{"info":{"_postman_id":"76b63251-7ee7-4beb-900b-7ee923fd7f58","name":"SitePad CRM","description":"<html><head></head><body><img src=\"https://demo.sitepadcrm.com/images/website/form-screen-sitepad-logo.svg\" alt=\"\"></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"19967409","collectionId":"76b63251-7ee7-4beb-900b-7ee923fd7f58","publishedId":"2s9YeBfZdY","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-11-23T15:40:51.000Z"},"item":[{"name":"Basics","item":[{"name":"Authentication","item":[],"id":"28e48cab-4e44-49cd-b8fb-9bda8dcd2a0b","description":"<blockquote>\n<p>To authenticate with the API you will be given a <strong><code>secret key</code></strong>. This secret key along with other fields in the <strong><code>header</code></strong> section of the request participates in the SHA512 hash that becomes the <strong><code>password</code></strong> supplied in the request. </p>\n</blockquote>\n<p>Javascript example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>var secret_key = pm.collection.get(\"secret_key\");\nvar hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\nhash = hash.toString(CryptoJS.enc.Hex);\npm.variables.set(\"password\", hash);\n\n</code></pre><p>PHP example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>$secret_key = \"4a6asd0879asf07sadfs0d9fg7sdf098\";\n$id = \"123\";\n$tenant = \"1\";\n$email = \"joe.bloggs@acme.com\";\n$method = \"fetchClients\";\n$hash = hash('sha512', $id . $tenant . $email . $method . $secret_key);\n\n</code></pre><p>The following further constraints also apply:</p>\n<ul>\n<li><p>Requests can only be made from the <strong>IP Addresses</strong> specified on the <strong>SitePad Configuration</strong> screen.</p>\n</li>\n<li><p>The <strong>email address</strong> supplied with each request must relate to a user account that has been granted access to the API. This user account must be marked as <strong>active</strong>.</p>\n</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"ce4bb648-9f82-459a-af60-43c304118144","type":"text/javascript","packages":{},"exec":["var secret_key = pm.collection.get(\"secret_key\");\r","var hashpassword = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", password);"]}},{"listen":"test","script":{"id":"d7ff3ce5-f49f-484a-a539-c5836db8d39a","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"28e48cab-4e44-49cd-b8fb-9bda8dcd2a0b"},{"name":"Request Format","item":[],"id":"6f931e79-5152-4a30-964d-06ec36590c3c","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-plaintext\">This is the standard Request Format.  The \"root\" is \"sitepad\".\n{\"sitepad\":\n  {\"header\":\n    {\"id\"          : \"123123\",\n     \"tenant\"      : \"1\",\n     \"email\"       : \"steve.curd@coins-global.com\",\n     \"password\"    : \"localhostthereforenotrequired\",\n     \"method\"      : \"fetchClients\",\n     \"pjc_id\"      : \"732\"}\n  }\n}\nYou can omit the root element, in which case the request would look like this:\n  {\"header\":\n    {\"id\"          : \"123123\",\n     \"tenant\"      : \"1\",\n     \"email\"       : \"steve.curd@coins-global.com\",\n     \"password\"    : \"localhostthereforenotrequired\",\n     \"method\"      : \"fetchClients\",\n     \"pjc_id\"      : \"732\"}\n  }\n\n</code></pre>\n","_postman_id":"6f931e79-5152-4a30-964d-06ec36590c3c"},{"name":"Response to Successful Request","item":[],"id":"e0d50a3d-bf53-4396-bd69-f3ff170a02f9","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Note that if the Request omits the root \"sitepad\" element, then the Response will also omit this element.\n{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"fetchClients\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}\n\n</code></pre><p>The <code>response</code> is set to SUCCESS.</p>\n<p>The contents of <code>body</code> will vary according to the particular request made.</p>\n","_postman_id":"e0d50a3d-bf53-4396-bd69-f3ff170a02f9"},{"name":"Response to Unsuccesful Request","item":[],"id":"b4fb87af-ceda-4668-a989-252f268f6ab9","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"fetchClients\",\n            \"response\": \"EXCEPTION\",\n            \"exceptionmessage\": \"Client with Id 116211 not found\"\n        }\n    }\n}\n\n</code></pre><p>The <code>response</code> is set to EXCEPTION.</p>\n<p>The <code>exceptionmessage</code> provides more details of the error.</p>\n","_postman_id":"b4fb87af-ceda-4668-a989-252f268f6ab9"}],"id":"1a919808-3abc-43f7-b875-c16329d17779","_postman_id":"1a919808-3abc-43f7-b875-c16329d17779","description":""},{"name":"Business Units","item":[{"name":"Fetch Business Units","event":[{"listen":"prerequest","script":{"id":"74a5fea2-8dcc-42f4-882d-6141721a9617","exec":["pm.variables.set(\"method\",\"fetchBunits\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"74859721-9634-4744-838c-4903d2855ace","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 100,\r\n     \"pjb_id\"      : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"74859721-9634-4744-838c-4903d2855ace"}],"id":"229448a8-fd8c-4ac2-aefe-9ea44830422a","_postman_id":"229448a8-fd8c-4ac2-aefe-9ea44830422a","description":""},{"name":"Client Groups","item":[{"name":"fetchClientGroups","event":[{"listen":"prerequest","script":{"id":"c195be47-76cf-41ce-ad3a-7abdd1b4d35e","exec":["pm.variables.set(\"method\",\"fetchClientGroups\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"952ae87b-09ae-4c5f-bf76-335e22328fb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"terse\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 10,\r\n     \"pjg_id\"      : 8\r\n     }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"9a2334ab-0774-4591-b70a-e16c2caac3b7","name":"fetchClientGroups","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 10\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 12:28:59 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"6445"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchClientGroups\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pjg_id\": 8,\n                \"pjg_name\": \"aaqqww\",\n                \"pjg_created\": \"2020-06-08 17:12:00\",\n                \"pjg_updated\": \"2024-06-04 13:53:53\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [\n                    {\n                        \"pjc_id\": 888,\n                        \"pjc_name\": \"355 PRODUCTION UK ssssssssssssssssssssssss\"\n                    },\n                    {\n                        \"pjc_id\": 10736,\n                        \"pjc_name\": \"4 DELIVERY LIMITED F034\"\n                    },\n                    {\n                        \"pjc_id\": 10978,\n                        \"pjc_name\": \"777 ENVIRONMENTAL LIMITED S161\"\n                    },\n                    {\n                        \"pjc_id\": 12439,\n                        \"pjc_name\": \"A & M COMMERCIALS LTD A102\"\n                    },\n                    {\n                        \"pjc_id\": 12842,\n                        \"pjc_name\": \"A AND J WASTE SERVICES LTD A182\"\n                    },\n                    {\n                        \"pjc_id\": 11594,\n                        \"pjc_name\": \"A C S (2000) LIMITED A022\"\n                    },\n                    {\n                        \"pjc_id\": 13434,\n                        \"pjc_name\": \"A D PLANT HIRE LTD A219\"\n                    },\n                    {\n                        \"pjc_id\": 1000,\n                        \"pjc_name\": \"ABC BUILDING & MAINTENANCE CONTRACTS LTD\"\n                    },\n                    {\n                        \"pjc_id\": 1040,\n                        \"pjc_name\": \"ADVANCED WASTE SOLUTIONS LTD\"\n                    },\n                    {\n                        \"pjc_id\": 389,\n                        \"pjc_name\": \"Balfour Beatty Regional Construction (Airport) Limited\"\n                    },\n                    {\n                        \"pjc_id\": 672,\n                        \"pjc_name\": \"Greater London Waste Disposal LTD\"\n                    },\n                    {\n                        \"pjc_id\": 961,\n                        \"pjc_name\": \"L&S WASTE MANAGEMENT LTD\"\n                    }\n                ],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"on\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"666.00\",\n                    \"SomeOtherDetails_2069_f1\": \"1\",\n                    \"SomeOtherDetails_2070_f2\": \"2\",\n                    \"SomeOtherDetails_2072_f4\": \"3\",\n                    \"SomeOtherDetails_2071_f3\": \"4\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            },\n            {\n                \"pjg_id\": 17,\n                \"pjg_name\": \"Group 102\",\n                \"pjg_created\": \"2024-06-26 16:12:47\",\n                \"pjg_updated\": \"2024-06-26 16:12:47\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [\n                    {\n                        \"pjc_id\": 516,\n                        \"pjc_name\": \"4D Structures Limited\"\n                    },\n                    {\n                        \"pjc_id\": 13604,\n                        \"pjc_name\": \"Prospect AA20\"\n                    }\n                ],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"on\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"25000\",\n                    \"SomeOtherDetails_2069_f1\": \"F111\",\n                    \"SomeOtherDetails_2070_f2\": \"F222\",\n                    \"SomeOtherDetails_2072_f4\": \"F444\",\n                    \"SomeOtherDetails_2071_f3\": \"F333\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            },\n            {\n                \"pjg_id\": 18,\n                \"pjg_name\": \"Group 103\",\n                \"pjg_created\": \"2024-06-26 16:27:06\",\n                \"pjg_updated\": \"2024-06-26 16:27:06\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [\n                    {\n                        \"pjc_id\": 11456,\n                        \"pjc_name\": \"4D STRUCTURES LIMITED F033\"\n                    },\n                    {\n                        \"pjc_id\": 11050,\n                        \"pjc_name\": \"A E YATES TRENCHLESS SOLUTIONS Y004\"\n                    }\n                ],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"off\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"25000\",\n                    \"SomeOtherDetails_2069_f1\": \"\",\n                    \"SomeOtherDetails_2070_f2\": \"\",\n                    \"SomeOtherDetails_2072_f4\": \"\",\n                    \"SomeOtherDetails_2071_f3\": \"\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            },\n            {\n                \"pjg_id\": 19,\n                \"pjg_name\": \"Group 104\",\n                \"pjg_created\": \"2024-06-26 16:30:20\",\n                \"pjg_updated\": \"2024-06-26 16:30:20\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"off\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"25000\",\n                    \"SomeOtherDetails_2069_f1\": \"\",\n                    \"SomeOtherDetails_2070_f2\": \"\",\n                    \"SomeOtherDetails_2072_f4\": \"\",\n                    \"SomeOtherDetails_2071_f3\": \"\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            },\n            {\n                \"pjg_id\": 22,\n                \"pjg_name\": \"Group 105\",\n                \"pjg_created\": \"2024-06-26 16:32:20\",\n                \"pjg_updated\": \"2024-06-26 16:32:20\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [\n                    {\n                        \"pjc_id\": 888,\n                        \"pjc_name\": \"355 PRODUCTION UK ssssssssssssssssssssssss\"\n                    },\n                    {\n                        \"pjc_id\": 10736,\n                        \"pjc_name\": \"4 DELIVERY LIMITED F034\"\n                    },\n                    {\n                        \"pjc_id\": 10978,\n                        \"pjc_name\": \"777 ENVIRONMENTAL LIMITED S161\"\n                    }\n                ],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"off\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"25000\",\n                    \"SomeOtherDetails_2069_f1\": \"\",\n                    \"SomeOtherDetails_2070_f2\": \"\",\n                    \"SomeOtherDetails_2072_f4\": \"\",\n                    \"SomeOtherDetails_2071_f3\": \"\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            },\n            {\n                \"pjg_id\": 24,\n                \"pjg_name\": \"Group 105\",\n                \"pjg_created\": \"2024-08-05 17:49:00\",\n                \"pjg_updated\": \"2024-08-05 17:51:49\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"off\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"123.00\",\n                    \"SomeOtherDetails_2069_f1\": \"\",\n                    \"SomeOtherDetails_2070_f2\": \"\",\n                    \"SomeOtherDetails_2072_f4\": \"\",\n                    \"SomeOtherDetails_2071_f3\": \"\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            },\n            {\n                \"pjg_id\": 25,\n                \"pjg_name\": \"Group 106\",\n                \"pjg_created\": \"2024-08-05 17:57:56\",\n                \"pjg_updated\": \"2024-08-05 17:57:56\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [\n                    {\n                        \"pjc_id\": 888,\n                        \"pjc_name\": \"355 PRODUCTION UK ssssssssssssssssssssssss\"\n                    },\n                    {\n                        \"pjc_id\": 10736,\n                        \"pjc_name\": \"4 DELIVERY LIMITED F034\"\n                    },\n                    {\n                        \"pjc_id\": 10978,\n                        \"pjc_name\": \"777 ENVIRONMENTAL LIMITED S161\"\n                    }\n                ],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"off\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"25000\",\n                    \"SomeOtherDetails_2069_f1\": \"\",\n                    \"SomeOtherDetails_2070_f2\": \"\",\n                    \"SomeOtherDetails_2072_f4\": \"\",\n                    \"SomeOtherDetails_2071_f3\": \"\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            },\n            {\n                \"pjg_id\": 26,\n                \"pjg_name\": \"Group 106\",\n                \"pjg_created\": \"2024-08-05 17:58:40\",\n                \"pjg_updated\": \"2024-08-05 17:58:40\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [\n                    {\n                        \"pjc_id\": 888,\n                        \"pjc_name\": \"355 PRODUCTION UK ssssssssssssssssssssssss\"\n                    },\n                    {\n                        \"pjc_id\": 10978,\n                        \"pjc_name\": \"777 ENVIRONMENTAL LIMITED S161\"\n                    }\n                ],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"off\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"25000\",\n                    \"SomeOtherDetails_2069_f1\": \"\",\n                    \"SomeOtherDetails_2070_f2\": \"\",\n                    \"SomeOtherDetails_2072_f4\": \"\",\n                    \"SomeOtherDetails_2071_f3\": \"\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            },\n            {\n                \"pjg_id\": 27,\n                \"pjg_name\": \"Group 106\",\n                \"pjg_created\": \"2024-08-05 17:59:01\",\n                \"pjg_updated\": \"2024-08-05 17:59:01\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [\n                    {\n                        \"pjc_id\": 888,\n                        \"pjc_name\": \"355 PRODUCTION UK ssssssssssssssssssssssss\"\n                    },\n                    {\n                        \"pjc_id\": 10978,\n                        \"pjc_name\": \"777 ENVIRONMENTAL LIMITED S161\"\n                    }\n                ],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"off\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"25000\",\n                    \"SomeOtherDetails_2069_f1\": \"\",\n                    \"SomeOtherDetails_2070_f2\": \"\",\n                    \"SomeOtherDetails_2072_f4\": \"\",\n                    \"SomeOtherDetails_2071_f3\": \"\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            },\n            {\n                \"pjg_id\": 28,\n                \"pjg_name\": \"Group 106\",\n                \"pjg_created\": \"2024-08-05 18:00:13\",\n                \"pjg_updated\": \"2024-08-05 18:00:13\",\n                \"pjg_syu_id_revby\": 1,\n                \"pjg_syu_fullname_revby\": \"Steve Curd\",\n                \"clients\": [\n                    {\n                        \"pjc_id\": 888,\n                        \"pjc_name\": \"355 PRODUCTION UK ssssssssssssssssssssssss\"\n                    },\n                    {\n                        \"pjc_id\": 10978,\n                        \"pjc_name\": \"777 ENVIRONMENTAL LIMITED S161\"\n                    }\n                ],\n                \"custom_fields\": {\n                    \"ClientGroupDetails_2067_aaaaaaaaaaaaa\": \"off\",\n                    \"ClientGroupDetails_2068_kkkkkkkkkkk\": \"25000\",\n                    \"SomeOtherDetails_2069_f1\": \"\",\n                    \"SomeOtherDetails_2070_f2\": \"\",\n                    \"SomeOtherDetails_2072_f4\": \"\",\n                    \"SomeOtherDetails_2071_f3\": \"\",\n                    \"SomeOtherDetails_2806_ClientTurnover/ProjVal\": \"\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"952ae87b-09ae-4c5f-bf76-335e22328fb8"},{"name":"addClientGroup","event":[{"listen":"prerequest","script":{"id":"d0cb63ee-1042-4359-8b61-8d927be32ca4","exec":["pm.variables.set(\"method\",\"addClientGroup\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"c7de2046-dd8e-4952-8c7d-1e04c6c2cbfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjg_name\":\"Group 106\",\r\n        \"clients\": [\r\n          {\"pjc_id\": 888},\r\n          {\"pjc_id\": 10978}\r\n        ],\r\n        \"custom_fields\": {\r\n          \"2067\": \"off\",\r\n          \"2068\": \"25000\"\r\n        }\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"a4ac283a-21ff-49ec-8eb5-f6b74078dcb0","name":"addClientGroup","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"addClientGroup\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjg_name\":\"Group 106\",\r\n        \"clients\": [\r\n          {\"pjc_id\": 888},\r\n          {\"pjc_id\": 10736},\r\n          {\"pjc_id\": 10978}\r\n        ],\r\n        \"custom_fields\": {\r\n          \"2067\": \"off\",\r\n          \"2068\": \"25000\"\r\n        }\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Jun 2024 15:37:55 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"99"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"addClientGroup\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            \"23\"\n        ]\n    }\n}"}],"_postman_id":"c7de2046-dd8e-4952-8c7d-1e04c6c2cbfd"},{"name":"updateClientGroup","id":"c49adbbb-2db5-4ca2-8ef0-2ea5e41b97ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"updateClientGroup\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjg_id\":\"23\",\r\n        \"pjg_name\":\"www.abc.co.uk\",\r\n        \"clients\": [\r\n          {\"action\":\"A\",\"pjc_id\": 12002},\r\n          {\"action\":\"D\",\"pjc_id\": 10978}\r\n        ],\r\n        \"custom_fields\": {\r\n          \"2067\": \"on\"\r\n         }\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"42e95242-ba3b-4052-aa7d-7d2874f223c0","name":"updateClientGroup","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"updateClientGroup\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjg_id\":\"23\",\r\n        \"pjg_name\":\"www.abc.co.uk\",\r\n        \"clients\": [\r\n          {\"action\":\"A\",\"pjc_id\": 12002},\r\n          {\"action\":\"D\",\"pjc_id\": 10978}\r\n        ],\r\n        \"custom_fields\": {\r\n          \"2067\": \"on\"\r\n         }\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Jun 2024 16:04:44 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"98"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"updateClientGroup\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"c49adbbb-2db5-4ca2-8ef0-2ea5e41b97ee"},{"name":"deleteClientGroup","id":"67bb190e-6a3d-4b45-943a-fcba1cb42f06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"deleteClientGroup\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjg_id\":\"23\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"4a0eae36-a5ae-41cf-8ebd-2d2595c99687","name":"deleteClientGroup","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"deleteClientGroup\"},\r\n   \"body\":\r\n     [\r\n       {\"pjg_id\":\"23\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Jun 2024 16:05:15 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"98"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"deleteClientGroup\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"67bb190e-6a3d-4b45-943a-fcba1cb42f06"}],"id":"dda0d13b-1432-4248-8add-c3cb42e2aa76","_postman_id":"dda0d13b-1432-4248-8add-c3cb42e2aa76","description":""},{"name":"Prospects","item":[{"name":"fetchProspects","event":[{"listen":"prerequest","script":{"id":"97b93564-5340-4290-9315-2596feca96da","exec":["pm.variables.set(\"method\",\"fetchProspects\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"0b66591a-e3dc-471d-9953-6a67653b5d15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 50,\r\n     \"pjc_id\"      : 13654 \r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"6d5eec03-9c8f-4032-9632-a2dc295c5286","name":"fetchProspects","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 50,\r\n     \"pjc_id\"      : null \r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 12:28:30 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchProspects\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pjc_id\": 282,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Amberr Construction Services Ltd\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"35000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2016-09-15 15:35:56\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 531,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Alaraby Television Network\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"22000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 42568,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Qualified Out\",\n                \"pjc_created\": \"2018-01-15 12:28:41\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-03-12 12:54:30\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 732,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Primary - Developer\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 624,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Abbey Pynford\",\n                \"pjc_turnover\": \"2500000\",\n                \"pjc_predicted_value\": \"50000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2020-05-14\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2018-08-15 14:53:04\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 732,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Cxyzabcd\",\n                \"pjc_turnover\": \"10000000\",\n                \"pjc_predicted_value\": \"75000\",\n                \"pjc_lifetime_value\": \"1500000\",\n                \"pjc_predicted_startdate\": \"2020-05-31\",\n                \"pjc_syu_id_bdm\": 6,\n                \"pjc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"pjc_sytt_id_psource\": 747,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Google)\",\n                \"pjc_sytt_id_prospectstatus\": 783,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - No Bid\",\n                \"pjc_created\": \"2020-04-06 21:29:06\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-05-02 15:00:27\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 731,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Infrastructure\",\n                        \"sytt_desc_full\": \"Primary - Infrastructure\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": 705,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": \"Retail\",\n                        \"sytt_desc_full\": \"Fourth - Retail\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 1136,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Target No 1\",\n                \"pjc_turnover\": \"500000\",\n                \"pjc_predicted_value\": \"22825\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 782,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Lost\",\n                \"pjc_created\": \"2020-09-27 18:49:47\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-03-12 12:54:30\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 1149,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Wates\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"25000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2021-02-16 16:46:22\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 1158,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Z'zz Groundwork\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"75000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2021-02-21 13:43:59\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 1159,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Abc Â£ Roofers\",\n                \"pjc_turnover\": \"7500000\",\n                \"pjc_predicted_value\": \"37500\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2021-02-21 20:08:15\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 732,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Primary - Developer\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 675,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Construction\",\n                        \"sytt_desc_full\": \"Secondary - Construction\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 1221,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Wateszz\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"25000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 3,\n                \"pjc_syu_fullname_bdm\": \"John Smith\",\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2023-03-08 19:23:25\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 676,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Civil Engineering\",\n                        \"sytt_desc_full\": \"Secondary - Civil Engineering\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 13505,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Wateszzz\",\n                \"pjc_turnover\": \"7500000\",\n                \"pjc_predicted_value\": \"30000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2024-01-01\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42572,\n                \"pjc_sytt_desc_psource\": \"LinkedIn\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2023-11-14 19:06:01\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Secondary\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 13507,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Prospect AA02\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"10000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2023-11-22 18:21:55\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13509,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Prospect Aa04\",\n                \"pjc_turnover\": \"350000\",\n                \"pjc_predicted_value\": \"75000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2023-11-30\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2023-11-22 18:31:37\",\n                \"pjc_syu_id_createdby\": 117,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13518,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Prospect AA100o\",\n                \"pjc_turnover\": \"750000\",\n                \"pjc_predicted_value\": \"29000\",\n                \"pjc_lifetime_value\": \"1500000\",\n                \"pjc_predicted_startdate\": \"2024-03-01\",\n                \"pjc_syu_id_bdm\": 6,\n                \"pjc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2023-11-23 14:18:23\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13528,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Acca Plant\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2023-12-23 17:18:35\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13530,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Prospect BB01\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"37000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2024-01-02\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42577,\n                \"pjc_sytt_desc_psource\": \"London Irish\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2024-01-09 18:48:46\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13531,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Truro Council\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"17000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42580,\n                \"pjc_sytt_desc_psource\": \"Existing/Past Customer\",\n                \"pjc_sytt_id_prospectstatus\": 783,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - No Bid\",\n                \"pjc_created\": \"2024-01-11 12:04:52\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-05-02 15:00:37\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13533,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Reading Council\",\n                \"pjc_turnover\": \"10000000\",\n                \"pjc_predicted_value\": \"902000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2024-01-31\",\n                \"pjc_syu_id_bdm\": 3,\n                \"pjc_syu_fullname_bdm\": \"John Smith\",\n                \"pjc_sytt_id_psource\": 42580,\n                \"pjc_sytt_desc_psource\": \"Existing/Past Customer\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2024-01-11 14:50:29\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Secondary\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 13534,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Prospect Cc01\",\n                \"pjc_turnover\": \"250000\",\n                \"pjc_predicted_value\": \"27000\",\n                \"pjc_lifetime_value\": \"850000\",\n                \"pjc_predicted_startdate\": \"2024-01-31\",\n                \"pjc_syu_id_bdm\": 3,\n                \"pjc_syu_fullname_bdm\": \"John Smith\",\n                \"pjc_sytt_id_psource\": 42578,\n                \"pjc_sytt_desc_psource\": \"Instagram\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2024-01-16 12:03:29\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:32\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13570,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Prospect DD01\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42577,\n                \"pjc_sytt_desc_psource\": \"London Irish\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2024-03-15 17:40:10\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13604,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Prospect AA20\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-06-25 16:53:24\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"Freddy\",\n                    \"eterterterterte_2795_aValue\": \"222.00\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 13609,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Aaaaaaaaaaaaaaaaaa\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42581,\n                \"pjc_sytt_desc_psource\": \"Director Referall\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 10:47:01\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13610,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Bbbbbbbbbbbbbbbbbbbb\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42572,\n                \"pjc_sytt_desc_psource\": \"LinkedIn\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 11:16:11\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13611,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Ccccccccccccccc\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42578,\n                \"pjc_sytt_desc_psource\": \"Instagram\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 13:02:02\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13613,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Eeeee Eeeeee\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2024-07-17\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42578,\n                \"pjc_sytt_desc_psource\": \"Instagram\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 13:09:07\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13614,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"777 Group\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42570,\n                \"pjc_sytt_desc_psource\": \"Customer Review and Testimonials\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 13:15:10\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13615,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Gggggg Ggggg\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 747,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Google)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 13:25:55\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13616,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Aaaaaaaaaaaa Ddddddd\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 747,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Google)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-03 13:44:34\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13617,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Sgfdgrttert\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42582,\n                \"pjc_sytt_desc_psource\": \"Other\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-03 17:47:43\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13619,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Qqqqqqqqqqq\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42577,\n                \"pjc_sytt_desc_psource\": \"London Irish\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-31 16:01:37\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13638,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Ax01\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42570,\n                \"pjc_sytt_desc_psource\": \"Customer Review and Testimonials\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2024-08-11 17:22:17\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13639,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Ax02\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42580,\n                \"pjc_sytt_desc_psource\": \"Existing/Past Customer\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2024-08-11 17:23:53\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:24:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13640,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Ax03\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42572,\n                \"pjc_sytt_desc_psource\": \"LinkedIn\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-08-11 17:25:05\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:57:18\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13643,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Bbbccc\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42578,\n                \"pjc_sytt_desc_psource\": \"Instagram\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-08-13 13:14:20\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-13 13:14:20\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"0b66591a-e3dc-471d-9953-6a67653b5d15"},{"name":"fetchUpdatedProspects","event":[{"listen":"prerequest","script":{"id":"97b93564-5340-4290-9315-2596feca96da","exec":["pm.variables.set(\"method\",\"fetchUpdatedProspects\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"01e87b84-904c-491a-8579-7316a7c88a7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",\r\n     \"updatesSince\" : \"2024-10-28\",     \r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 50,\r\n     \"pjc_id\"      : null \r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"f9767c1f-63eb-4182-bbc7-235a4cd1dc4a","name":"fetchProspects","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 50,\r\n     \"pjc_id\"      : null \r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 12:28:30 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchProspects\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pjc_id\": 282,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Amberr Construction Services Ltd\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"35000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2016-09-15 15:35:56\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 531,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Alaraby Television Network\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"22000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 42568,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Qualified Out\",\n                \"pjc_created\": \"2018-01-15 12:28:41\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-03-12 12:54:30\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 732,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Primary - Developer\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 624,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Abbey Pynford\",\n                \"pjc_turnover\": \"2500000\",\n                \"pjc_predicted_value\": \"50000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2020-05-14\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2018-08-15 14:53:04\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 732,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Cxyzabcd\",\n                \"pjc_turnover\": \"10000000\",\n                \"pjc_predicted_value\": \"75000\",\n                \"pjc_lifetime_value\": \"1500000\",\n                \"pjc_predicted_startdate\": \"2020-05-31\",\n                \"pjc_syu_id_bdm\": 6,\n                \"pjc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"pjc_sytt_id_psource\": 747,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Google)\",\n                \"pjc_sytt_id_prospectstatus\": 783,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - No Bid\",\n                \"pjc_created\": \"2020-04-06 21:29:06\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-05-02 15:00:27\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 731,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Infrastructure\",\n                        \"sytt_desc_full\": \"Primary - Infrastructure\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": 705,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": \"Retail\",\n                        \"sytt_desc_full\": \"Fourth - Retail\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 1136,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Target No 1\",\n                \"pjc_turnover\": \"500000\",\n                \"pjc_predicted_value\": \"22825\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 782,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Lost\",\n                \"pjc_created\": \"2020-09-27 18:49:47\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-03-12 12:54:30\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 1149,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Wates\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"25000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2021-02-16 16:46:22\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 1158,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Z'zz Groundwork\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"75000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2021-02-21 13:43:59\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 1159,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Abc Â£ Roofers\",\n                \"pjc_turnover\": \"7500000\",\n                \"pjc_predicted_value\": \"37500\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2021-02-21 20:08:15\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 732,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Primary - Developer\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 675,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Construction\",\n                        \"sytt_desc_full\": \"Secondary - Construction\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 1221,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Wateszz\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"25000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 3,\n                \"pjc_syu_fullname_bdm\": \"John Smith\",\n                \"pjc_sytt_id_psource\": 746,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Newspaper)\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2023-03-08 19:23:25\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 676,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Civil Engineering\",\n                        \"sytt_desc_full\": \"Secondary - Civil Engineering\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 13505,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Wateszzz\",\n                \"pjc_turnover\": \"7500000\",\n                \"pjc_predicted_value\": \"30000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2024-01-01\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42572,\n                \"pjc_sytt_desc_psource\": \"LinkedIn\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2023-11-14 19:06:01\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Secondary\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 13507,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Prospect AA02\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"10000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2023-11-22 18:21:55\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13509,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Prospect Aa04\",\n                \"pjc_turnover\": \"350000\",\n                \"pjc_predicted_value\": \"75000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2023-11-30\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2023-11-22 18:31:37\",\n                \"pjc_syu_id_createdby\": 117,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13518,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Prospect AA100o\",\n                \"pjc_turnover\": \"750000\",\n                \"pjc_predicted_value\": \"29000\",\n                \"pjc_lifetime_value\": \"1500000\",\n                \"pjc_predicted_startdate\": \"2024-03-01\",\n                \"pjc_syu_id_bdm\": 6,\n                \"pjc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2023-11-23 14:18:23\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13528,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Acca Plant\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2023-12-23 17:18:35\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13530,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Prospect BB01\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"37000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2024-01-02\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42577,\n                \"pjc_sytt_desc_psource\": \"London Irish\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2024-01-09 18:48:46\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13531,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Truro Council\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"17000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42580,\n                \"pjc_sytt_desc_psource\": \"Existing/Past Customer\",\n                \"pjc_sytt_id_prospectstatus\": 783,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - No Bid\",\n                \"pjc_created\": \"2024-01-11 12:04:52\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-05-02 15:00:37\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13533,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Reading Council\",\n                \"pjc_turnover\": \"10000000\",\n                \"pjc_predicted_value\": \"902000\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2024-01-31\",\n                \"pjc_syu_id_bdm\": 3,\n                \"pjc_syu_fullname_bdm\": \"John Smith\",\n                \"pjc_sytt_id_psource\": 42580,\n                \"pjc_sytt_desc_psource\": \"Existing/Past Customer\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2024-01-11 14:50:29\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Secondary\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 13534,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Prospect Cc01\",\n                \"pjc_turnover\": \"250000\",\n                \"pjc_predicted_value\": \"27000\",\n                \"pjc_lifetime_value\": \"850000\",\n                \"pjc_predicted_startdate\": \"2024-01-31\",\n                \"pjc_syu_id_bdm\": 3,\n                \"pjc_syu_fullname_bdm\": \"John Smith\",\n                \"pjc_sytt_id_psource\": 42578,\n                \"pjc_sytt_desc_psource\": \"Instagram\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2024-01-16 12:03:29\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:32\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13570,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Prospect DD01\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42577,\n                \"pjc_sytt_desc_psource\": \"London Irish\",\n                \"pjc_sytt_id_prospectstatus\": 740,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Contacted\",\n                \"pjc_created\": \"2024-03-15 17:40:10\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-31 19:19:34\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13604,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Prospect AA20\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42575,\n                \"pjc_sytt_desc_psource\": \"Website\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-06-25 16:53:24\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"Freddy\",\n                    \"eterterterterte_2795_aValue\": \"222.00\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    }\n                ]\n            },\n            {\n                \"pjc_id\": 13609,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Aaaaaaaaaaaaaaaaaa\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42581,\n                \"pjc_sytt_desc_psource\": \"Director Referall\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 10:47:01\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13610,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Bbbbbbbbbbbbbbbbbbbb\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42572,\n                \"pjc_sytt_desc_psource\": \"LinkedIn\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 11:16:11\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13611,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Ccccccccccccccc\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42578,\n                \"pjc_sytt_desc_psource\": \"Instagram\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 13:02:02\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13613,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Eeeee Eeeeee\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"2024-07-17\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42578,\n                \"pjc_sytt_desc_psource\": \"Instagram\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 13:09:07\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13614,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"777 Group\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42570,\n                \"pjc_sytt_desc_psource\": \"Customer Review and Testimonials\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 13:15:10\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13615,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Gggggg Ggggg\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 747,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Google)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-01 13:25:55\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13616,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Aaaaaaaaaaaa Ddddddd\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 747,\n                \"pjc_sytt_desc_psource\": \"Ad Campaign (Google)\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-03 13:44:34\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13617,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Sgfdgrttert\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42582,\n                \"pjc_sytt_desc_psource\": \"Other\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-03 17:47:43\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13619,\n                \"pjc_sytt_id_prospecttype\": 754,\n                \"pjc_sytt_desc_prospecttype\": \"Target\",\n                \"pjc_name\": \"Qqqqqqqqqqq\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42577,\n                \"pjc_sytt_desc_psource\": \"London Irish\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-07-31 16:01:37\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:23:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13638,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Ax01\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42570,\n                \"pjc_sytt_desc_psource\": \"Customer Review and Testimonials\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2024-08-11 17:22:17\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13639,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Ax02\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42580,\n                \"pjc_sytt_desc_psource\": \"Existing/Past Customer\",\n                \"pjc_sytt_id_prospectstatus\": 742,\n                \"pjc_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjc_created\": \"2024-08-11 17:23:53\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:24:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13640,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Ax03\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42572,\n                \"pjc_sytt_desc_psource\": \"LinkedIn\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-08-11 17:25:05\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-11 17:57:18\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            },\n            {\n                \"pjc_id\": 13643,\n                \"pjc_sytt_id_prospecttype\": 755,\n                \"pjc_sytt_desc_prospecttype\": \"Prospect\",\n                \"pjc_name\": \"Bbbccc\",\n                \"pjc_turnover\": \"0\",\n                \"pjc_predicted_value\": \"0\",\n                \"pjc_lifetime_value\": \"0\",\n                \"pjc_predicted_startdate\": \"0000-00-00\",\n                \"pjc_syu_id_bdm\": 0,\n                \"pjc_syu_fullname_bdm\": null,\n                \"pjc_sytt_id_psource\": 42578,\n                \"pjc_sytt_desc_psource\": \"Instagram\",\n                \"pjc_sytt_id_prospectstatus\": 786,\n                \"pjc_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjc_created\": \"2024-08-13 13:14:20\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-13 13:14:20\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"eterterterterte_2794_Othername\": \"\",\n                    \"eterterterterte_2795_aValue\": \"\"\n                },\n                \"segments\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"01e87b84-904c-491a-8579-7316a7c88a7c"},{"name":"addProspect","id":"1e30baa1-46a2-4ba8-94ea-9c8fa8b62a3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"addProspect\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjc_name\"                   : \"Prospect AA20\",\r\n        \"pjc_sytt_id_prospecttype\"   : 755,\r\n        \"pjc_sytt_id_psource\"        : 42575,\r\n        \"pjc_sytt_id_prospectstatus\" : null,\r\n        \"mkc_firstname\"              : \"Rita\",\r\n        \"mkc_surname\"                : \"Murphy\",\r\n        \"mkc_mobile\"                 : \"07777 112233\",\r\n        \"mkc_email\"                  : \"rita.murphy@bbc.co.uk\",\r\n        \"mkc_sytt_id_position\"       : 215,\r\n        \"pjb_id\"                     : 4,\r\n        \"mkn_text\"                   : \"This is some sort of requirement\",\r\n        \"custom_fields\": {\r\n          \"24\": \"75210\"\r\n         }\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"15c09840-b9b6-48f4-bfff-f137ee762125","name":"addProspect","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"addProspect\"},\r\n   \"body\":\r\n     [\r\n       {\"pjc_name\"                   : \"Prospect AA20\",\r\n        \"pjc_sytt_id_prospecttype\"   : 755,\r\n        \"pjc_sytt_id_psource\"        : 42575,\r\n        \"pjc_sytt_id_prospectstatus\" : null,\r\n        \"mkc_firstname\"              : \"Rita\",\r\n        \"mkc_surname\"                : \"Murphy\",\r\n        \"mkc_mobile\"                 : \"07777 112233\",\r\n        \"mkc_email\"                  : \"rita.murphy@bbc.co.uk\",\r\n        \"mkc_sytt_id_position\"       : 215,\r\n        \"pjb_id\"                     : 4,\r\n        \"mkn_text\"                   : \"This is some sort of requirement\",\r\n        \"custom_fields\": {\r\n          \"24\": \"75210\"\r\n         }\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:53:24 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"99"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"addProspect\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            \"13604\"\n        ]\n    }\n}"}],"_postman_id":"1e30baa1-46a2-4ba8-94ea-9c8fa8b62a3b"}],"id":"08392b6b-53c6-48da-b77f-cdeff52fe2d6","_postman_id":"08392b6b-53c6-48da-b77f-cdeff52fe2d6","description":""},{"name":"Clients","item":[{"name":"fetchClients","event":[{"listen":"prerequest","script":{"id":"95d26135-b479-4689-ab9f-8b6a2d62cd40","exec":["pm.variables.set(\"method\",\"fetchClients\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"1a4eae80-f0f3-4e89-9259-3c70981fbc29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 100,\r\n     \"pjc_id\"      : 768\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","description":"<h2 id=\"api-request-description\">API Request Description</h2>\n<p>This endpoint retrieves detailed information about clients or a specific client identified by the provided parameters.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Request Body:</strong><br />The request body must be sent in JSON format and should contain the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"sitepad\": {\n    \"header\": {\n      \"id\": \"{{id}}\",               // Unique identifier for the request\n      \"tenant\": \"{{tenant}}\",       // Tenant identifier\n      \"email\": \"{{email}}\",         // User's email address\n      \"password\": \"{{password}}\",   // User's password\n      \"method\": \"{{method}}\",       // Method type for the request\n      \"datalevel\": \"verbose\",       // Level of detail in the response\n      \"offset\": 0,                  // Pagination offset\n      \"maxrows\": 100,               // Maximum number of rows to return\n      \"pjc_id\": 768                 // Specific project/client ID\n    }\n  }\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>The response will be returned in JSON format and will contain the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"sitepad\": {\n    \"header\": {\n      \"id\": \"\",                     // Echo of the request ID\n      \"method\": \"\",                 // Echo of the request method\n      \"response\": \"\"                // Status or message regarding the response\n    },\n    \"body\": [\n      {\n        \"pjc_id\": 0,                // Project/client ID\n        \"pjc_name\": \"\",             // Name of the project/client\n        \"pjc_accno\": \"\",            // Account number\n        \"syc_code\": \"\",             // Synchronization code\n        \"syc_name\": \"\",             // Synchronization name\n        \"pjc_phone\": \"\",            // Contact phone number\n        \"pjc_compregno\": \"\",        // Company registration number\n        \"pjc_website\": \"\",          // Website URL\n        \"pjc_restricted\": \"\",       // Restriction status\n        \"rdb_id\": null,             // Database ID\n        \"pjc_created\": \"\",          // Creation timestamp\n        \"pjc_syu_id_createdby\": 0,  // ID of the user who created the entry\n        \"pjc_syu_fullname_createdby\": \"\", // Full name of the creator\n        \"pjc_updated\": \"\",          // Last updated timestamp\n        \"pjc_syu_id_revby\": 0,      // ID of the user who last revised the entry\n        \"pjc_syu_fullname_revby\": \"\", // Full name of the last reviser\n        \"custom_fields\": {          // Custom fields associated with the project/client\n          \"ClientDetails_2783_OtherURL\": \"\",\n          \"ExtraData_72_ClientField1\": \"\",\n          \"ExtraData_73_ClientField2\": \"\",\n          \"ExtraData_74_ClientField3\": \"\",\n          \"ExtraData_2784_AnInteger\": \"\",\n          \"ExtraData_2788_\": \"\",\n          \"ExtraData_2785_ADecimal\": \"\",\n          \"ExtraData_2786_ACurrencyValue\": \"\",\n          \"ExtraData_2787_ADate\": \"\"\n        },\n        \"segments\": [               // List of segments associated with the project/client\n          {\n            \"sytt_id_segment\": 0,\n            \"sytt_id_segment_option\": 0,\n            \"sytt_desc_segment\": \"\",\n            \"sytt_desc_segment_option\": \"\",\n            \"sytt_desc_full\": \"\"\n          }\n        ],\n        \"categories\": [             // List of categories associated with the project/client\n          {\n            \"sytt_id_category\": 0,\n            \"sytt_desc_category\": \"\"\n          }\n        ],\n        \"regions\": [                // List of regions associated with the project/client\n          {\n            \"sytt_id_region\": 0,\n            \"sytt_desc_region\": \"\"\n          }\n        ]\n      }\n    ]\n  }\n}\n\n</code></pre>\n<h3 id=\"summary\">Summary</h3>\n<p>This API call is essential for retrieving comprehensive data related to a project or client, including various attributes and custom fields. Ensure that all required parameters are correctly provided in the request body to receive the expected response.</p>\n","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"4e24e5f8-0a76-45ad-8f49-3b048ebbfec9","name":"fetchClients","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 10,\r\n     \"pjc_id\"      : 13642 \r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 12:29:16 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1379"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchClients\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pjc_id\": 13642,\n                \"pjc_name\": \"Client 130\",\n                \"pjc_accno\": \"AAA130\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-13 08:49:17\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-13 10:01:58\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 730,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Construction\",\n                        \"sytt_desc_full\": \"Primary - Construction\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 732,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Primary - Developer\"\n                    }\n                ],\n                \"categories\": [\n                    {\n                        \"sytt_id_category\": 803,\n                        \"sytt_desc_category\": \"Active\"\n                    },\n                    {\n                        \"sytt_id_category\": 756,\n                        \"sytt_desc_category\": \"Top 20\"\n                    }\n                ],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82782,\n                        \"sytt_desc_region\": \"McG - Apprentice Zone\"\n                    },\n                    {\n                        \"sytt_id_region\": 82783,\n                        \"sytt_desc_region\": \"McG - Civil Engineering\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"1a4eae80-f0f3-4e89-9259-3c70981fbc29"},{"name":"fetchUpdatedClients","event":[{"listen":"prerequest","script":{"id":"5247cfca-2395-4b39-985a-d5322e8402e7","exec":["pm.variables.set(\"method\", \"fetchUpdatedClients\");\r","pm.variables.set(\"id\",\"\");\r","pm.variables.set(\"tenant\",\"1\");\r","pm.variables.set(\"email\",\"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"56302b03-b5dc-4d5a-987e-d2f8cf43e289","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",     \r\n     \"updatesSince\" : \"2024-10-01\"\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"a6592936-bd0c-4f6b-98de-9dffcb1448e2","name":"fetchUpdatedClients","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"2024-06-28\"\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 12:29:32 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUpdatedClients\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13607,\n                \"pjc_name\": \"00Aaa\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-06-28 10:50:43\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-06-28 10:50:43\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82783,\n                        \"sytt_desc_region\": \"McG - Civil Engineering\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13612,\n                \"pjc_name\": \"Dddddd Ddddd\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-07-01 13:06:42\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-01 13:06:42\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82782,\n                        \"sytt_desc_region\": \"McG - Apprentice Zone\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 905,\n                \"pjc_name\": \"3 G SETS Limited\",\n                \"pjc_accno\": \"SET003\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": 5005,\n                \"pjc_created\": \"2020-06-01 13:47:20\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-07-01 13:17:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 296,\n                \"pjc_name\": \"777 Group.\",\n                \"pjc_accno\": \"SEV002\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"020 8689 6861\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"www.777group.com/\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2016-09-26 14:37:25\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-07-01 13:17:47\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1158,\n                \"pjc_name\": \"Z'zz Groundwork\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2021-02-21 13:43:59\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13601,\n                \"pjc_name\": \"Client 106\",\n                \"pjc_accno\": \"AAA106\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-06-23 14:55:15\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-06-23 14:55:15\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 999,\n                \"pjc_name\": \"ZYBER CONSTRUCTION LTD\",\n                \"pjc_accno\": \"ZYB001\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2020-06-01 13:47:20\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-05-02 15:00:38\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13626,\n                \"pjc_name\": \"Client 109\",\n                \"pjc_accno\": \"AAA109\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-05 10:20:14\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-05 10:20:14\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13635,\n                \"pjc_name\": \"Client 111\",\n                \"pjc_accno\": \"AAA111\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-05 12:47:53\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-05 12:47:53\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Fourth\"\n                    }\n                ],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13636,\n                \"pjc_name\": \"Client 112\",\n                \"pjc_accno\": \"AAA112\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-05 12:49:04\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-05 12:49:04\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Fourth\"\n                    }\n                ],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 11085,\n                \"pjc_name\": \"1OFF BASEMENTS LIMITED CA006\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2023-09-11 16:33:50\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-06-08 18:28:32\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 812,\n                        \"sytt_desc_region\": \"London & the South East\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1218,\n                \"pjc_name\": \"01 Syrinx Client 01 ccccccccccccccccccc\",\n                \"pjc_accno\": \"001C\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"01895821513\",\n                \"pjc_compregno\": \"1514001\",\n                \"pjc_website\": \"01cxxx.co.uk\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": 123413,\n                \"pjc_created\": \"2023-02-17 11:50:20\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-08 14:53:43\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 730,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Construction\",\n                        \"sytt_desc_full\": \"Primary - Construction\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 732,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Primary - Developer\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 666,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Logistics\",\n                        \"sytt_desc_full\": \"Secondary - Logistics\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 670,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Fit Out\",\n                        \"sytt_desc_full\": \"Secondary - Fit Out\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 673,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Secondary - Developer\"\n                    }\n                ],\n                \"categories\": [\n                    {\n                        \"sytt_id_category\": 803,\n                        \"sytt_desc_category\": \"Active\"\n                    },\n                    {\n                        \"sytt_id_category\": 759,\n                        \"sytt_desc_category\": \"Not Active\"\n                    },\n                    {\n                        \"sytt_id_category\": 756,\n                        \"sytt_desc_category\": \"Top 20\"\n                    },\n                    {\n                        \"sytt_id_category\": 757,\n                        \"sytt_desc_category\": \"Top 40\"\n                    }\n                ],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"01895 8334455\",\n                \"pjc_compregno\": \"1234567\",\n                \"pjc_website\": \"www.bbc.co.uk\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": 5004,\n                \"pjc_created\": \"2021-02-21 20:11:06\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-09 20:12:25\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82783,\n                        \"sytt_desc_region\": \"McG - Civil Engineering\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13637,\n                \"pjc_name\": \"Client 110\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-10 10:34:27\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-10 10:34:27\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82784,\n                        \"sytt_desc_region\": \"McG - Rail Systems\"\n                    },\n                    {\n                        \"sytt_id_region\": 82785,\n                        \"sytt_desc_region\": \"McG - Archive Sector\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1220,\n                \"pjc_name\": \"01 iiiiiixxx bbbbbbbbbbbbbbbbbbbbb\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"bbc.co.uk\",\n                \"pjc_restricted\": \"on\",\n                \"rdb_id\": 123412,\n                \"pjc_created\": \"2023-02-17 12:36:22\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 12:33:55\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82782,\n                        \"sytt_desc_region\": \"McG - Apprentice Zone\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 13507\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 13640\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13600,\n                \"pjc_name\": \"Client 105\",\n                \"pjc_accno\": \"AAA105\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": \"www.abc.co.uk\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-06-21 15:52:28\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-12 11:10:24\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 653,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Tertiary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Tertiary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Fourth\"\n                    }\n                ],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 812,\n                        \"sytt_desc_region\": \"London & the South East\"\n                    },\n                    {\n                        \"sytt_id_region\": 813,\n                        \"sytt_desc_region\": \"The North East\"\n                    },\n                    {\n                        \"sytt_id_region\": 814,\n                        \"sytt_desc_region\": \"The North West\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13641,\n                \"pjc_name\": \"Client 113\",\n                \"pjc_accno\": \"AAA113\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-12 11:12:32\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-12 11:12:32\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Fourth\"\n                    }\n                ],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 812,\n                        \"sytt_desc_region\": \"London & the South East\"\n                    },\n                    {\n                        \"sytt_id_region\": 813,\n                        \"sytt_desc_region\": \"The North East\"\n                    },\n                    {\n                        \"sytt_id_region\": 814,\n                        \"sytt_desc_region\": \"The North West\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1306,\n                \"pjc_name\": \"0000011122Xyz1aaB\",\n                \"pjc_accno\": \"AAVCC\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"01895 111111\",\n                \"pjc_compregno\": \"12345BVV\",\n                \"pjc_website\": \"bbc.co.uk\",\n                \"pjc_restricted\": \"on\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2023-08-20 11:00:24\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-12 16:22:08\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 664,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Plant\",\n                        \"sytt_desc_full\": \"Secondary - Plant\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 669,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Formwork\",\n                        \"sytt_desc_full\": \"Secondary - Formwork\"\n                    }\n                ],\n                \"categories\": [\n                    {\n                        \"sytt_id_category\": 803,\n                        \"sytt_desc_category\": \"Active\"\n                    },\n                    {\n                        \"sytt_id_category\": 757,\n                        \"sytt_desc_category\": \"Top 40\"\n                    }\n                ],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 812,\n                        \"sytt_desc_region\": \"London & the South East\"\n                    },\n                    {\n                        \"sytt_id_region\": 82782,\n                        \"sytt_desc_region\": \"McG - Apprentice Zone\"\n                    },\n                    {\n                        \"sytt_id_region\": 82785,\n                        \"sytt_desc_region\": \"McG - Archive Sector\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13642,\n                \"pjc_name\": \"Client 130\",\n                \"pjc_accno\": \"AAA130\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-13 08:49:17\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-13 10:01:58\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 730,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Construction\",\n                        \"sytt_desc_full\": \"Primary - Construction\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 732,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Primary - Developer\"\n                    }\n                ],\n                \"categories\": [\n                    {\n                        \"sytt_id_category\": 803,\n                        \"sytt_desc_category\": \"Active\"\n                    },\n                    {\n                        \"sytt_id_category\": 756,\n                        \"sytt_desc_category\": \"Top 20\"\n                    }\n                ],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82782,\n                        \"sytt_desc_region\": \"McG - Apprentice Zone\"\n                    },\n                    {\n                        \"sytt_id_region\": 82783,\n                        \"sytt_desc_region\": \"McG - Civil Engineering\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 13581\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 13618\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 1148\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"\",\n                \"syc_name\": \"\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": null,\n                \"rdb_id\": null,\n                \"pjc_created\": null,\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": null,\n                \"pjc_syu_id_revby\": null,\n                \"pjc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"56302b03-b5dc-4d5a-987e-d2f8cf43e289"},{"name":"fetchClientNotes","id":"fe1d419c-97bf-46d6-aa32-5305d9be42b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"fetchClientNotes\",\r\n     \"pjc_id\"      : null\r\n    }\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"6e1e3046-0257-44c9-bdf7-fde5fd52690a","name":"fetchClientNotes","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"c12767720cb550f142fa8467d374b00f8d6af0a6e1e1c40d07b3b549954b6a72175f5623b9beab3a3219fa610c321e930a2122b5bb52c9044bf478c4faac2583\",\r\n     \"method\"      : \"fetchClientNotes\",\r\n     \"pjc_id\"      : \"281\"\r\n    }\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:42:05 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"611"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"fetchClientNotes\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"mkn_id\": 37,\n                \"pjc_id\": 281,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"aaaaaaaaaaaaaaaaaaa\",\n                \"mkn_sytt_id_notetype\": 770,\n                \"mkn_notetype_desc\": \"aaaa\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2021-07-28 19:43:32\",\n                \"mkn_updated\": \"2021-07-28 19:43:32\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 38,\n                \"pjc_id\": 281,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"bbbbbbbbbbbb\",\n                \"mkn_sytt_id_notetype\": 771,\n                \"mkn_notetype_desc\": \"bbbb\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2021-07-28 19:43:39\",\n                \"mkn_updated\": \"2021-07-28 19:43:39\",\n                \"rdb_id\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"fe1d419c-97bf-46d6-aa32-5305d9be42b1"},{"name":"fetchUpdatedClientNotes","id":"7e6ba2ed-786f-44b6-b18c-58d86447c936","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"fetchUpdatedClientNotes\",\r\n     \"updatesSince\" : \"2021-01-01\"\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"1836031c-56f2-40b7-9e41-b45c4645490b","name":"fetchUpdatedClientNotes","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"localhostthereforenotrequired\",\r\n     \"method\"      : \"fetchUpdatedClientNotes\",\r\n     \"updatesSince\" : \"2021-01-01\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:43:08 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"370"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"fetchUpdatedClientNotes\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"mkn_id\": 392,\n                \"pjc_id\": 1306,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"AAAA BBBB CCCC DDDD eee\",\n                \"mkn_sytt_id_notetype\": 771,\n                \"mkn_notetype_desc\": \"bbbb\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2023-11-18 11:35:46\",\n                \"mkn_updated\": \"2024-06-25 16:43:01\",\n                \"rdb_id\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"7e6ba2ed-786f-44b6-b18c-58d86447c936"},{"name":"fetchClientPurchaseOrders","id":"a346b7f5-9d4c-46a6-928a-14769005cfd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\r\n   \"header\":\r\n    {\r\n     \"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"fetchClientPurchaseOrders\",\r\n     \"pjc_id\"      : null\r\n    }\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"3b9637ce-bcc8-4708-9673-6e271c5cb2a4","name":"fetchClientPurchaseOrders","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\r\n   \"header\":\r\n    {\r\n     \"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"fda03ea26ae32ccd80a35d88604c9b34993dca5bbdda12dfb2efffd014ebc53407d8f2207f1022a3fa479d0a662f30e8f229bbf9f204fd45fa8937b954c129fb\",\r\n     \"method\"      : \"fetchClientPurchaseOrders\",\r\n     \"pjc_id\"      : \"389\"\r\n    }\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:43:23 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"931"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"fetchClientPurchaseOrders\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"PurchaseOrderNo\": \"WYC05102018CR1\",\n                \"Date\": \"2019-01-08\",\n                \"Used\": \"1320.00\",\n                \"OrderValue\": \"1000.00\",\n                \"Progress\": \"132\",\n                \"Status\": \"30\"\n            },\n            {\n                \"PurchaseOrderNo\": \"ABC125\",\n                \"Date\": \"2019-01-14\",\n                \"Used\": \"402.00\",\n                \"OrderValue\": \"555.00\",\n                \"Progress\": \"0\",\n                \"Status\": \"10\"\n            },\n            {\n                \"PurchaseOrderNo\": \"ABC126\",\n                \"Date\": \"2019-01-14\",\n                \"Used\": \"1254.00\",\n                \"OrderValue\": \"2500.00\",\n                \"Progress\": \"50\",\n                \"Status\": \"10\"\n            },\n            {\n                \"PurchaseOrderNo\": \"ABC127\",\n                \"Date\": \"2019-10-08\",\n                \"Used\": \"1782.00\",\n                \"OrderValue\": \"3000.00\",\n                \"Progress\": \"0\",\n                \"Status\": \"10\"\n            },\n            {\n                \"PurchaseOrderNo\": \"ABC128\",\n                \"Date\": \"0000-00-00\",\n                \"Used\": \"0.00\",\n                \"OrderValue\": \"2500.00\",\n                \"Progress\": \"0\",\n                \"Status\": \"10\"\n            },\n            {\n                \"PurchaseOrderNo\": \"ABC129\",\n                \"Date\": \"0000-00-00\",\n                \"Used\": \"0.00\",\n                \"OrderValue\": \"2500.00\",\n                \"Progress\": \"0\",\n                \"Status\": \"10\"\n            },\n            {\n                \"PurchaseOrderNo\": \"ABC130\",\n                \"Date\": \"0000-00-00\",\n                \"Used\": \"0.00\",\n                \"OrderValue\": \"2500.00\",\n                \"Progress\": \"0\",\n                \"Status\": \"10\"\n            }\n        ]\n    }\n}"}],"_postman_id":"a346b7f5-9d4c-46a6-928a-14769005cfd1"},{"name":"fetchClientOrderHistory","id":"05a9af45-fc70-4fa1-bbf4-dcd40a6590ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"fetchClientOrderHistory\",\r\n     \"pjc_id\"      : \"696\"\r\n    }\r\n\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"639d8b59-11ad-4e7a-b04b-18b509097cef","name":"fetchClientOrderHistory","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"a08f5305ba0f3bad971e3e885b4b04da5148080dcb30dfe53a69aee61b96b6f71ae816d71bf26dfd33c25f378b6e9695ee2f79bb7efb4ddb6363e99f69b8ce41\",\r\n     \"method\"      : \"fetchClientOrderHistory\",\r\n     \"pjc_id\"       : \"696\"\r\n    }\r\n\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:43:33 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"6659"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"fetchClientOrderHistory\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"soh_id\": \"0000233\",\n                \"soh_type\": \"Site Visit Request\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": null,\n                \"sod_desc\": \"\",\n                \"sop_id\": null,\n                \"sop_desc\": \"\",\n                \"sopa_id\": 0,\n                \"soda_id\": null,\n                \"soda_desc\": \"\",\n                \"sods_id\": 0,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 0,\n                \"sol_ordertype\": \"\",\n                \"sol_qty\": 0,\n                \"sol_duedate\": \"2019-08-21\",\n                \"sol_sytt_id_dueslot\": 644,\n                \"sol_dueslot\": \"PM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Complete\",\n                \"sol_created\": \"2019-08-16 13:54:53\"\n            },\n            {\n                \"soh_id\": \"0000235\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 1,\n                \"sop_desc\": \"7 YD Skip\",\n                \"sopa_id\": 3,\n                \"soda_id\": null,\n                \"soda_desc\": \"\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 642,\n                \"sol_ordertype\": \"Collection\",\n                \"sol_qty\": 1,\n                \"sol_duedate\": \"2019-08-19\",\n                \"sol_sytt_id_dueslot\": 644,\n                \"sol_dueslot\": \"PM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"Hounslow House\\nBennett Construction\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Open\",\n                \"sol_created\": \"2019-08-17 07:15:25\"\n            },\n            {\n                \"soh_id\": \"0000236\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 5,\n                \"sop_desc\": \"660 - Wheelie Bin\",\n                \"sopa_id\": 0,\n                \"soda_id\": null,\n                \"soda_desc\": \"\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 642,\n                \"sol_ordertype\": \"Collection\",\n                \"sol_qty\": 20,\n                \"sol_duedate\": \"2019-08-20\",\n                \"sol_sytt_id_dueslot\": 643,\n                \"sol_dueslot\": \"AM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"We need to send away 20 units 660 Lt wheelie bins, can you collect this week please.\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Complete\",\n                \"sol_created\": \"2019-08-18 11:31:12\"\n            },\n            {\n                \"soh_id\": \"0000237\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 3,\n                \"sop_desc\": \"20 YD Skip\",\n                \"sopa_id\": 6,\n                \"soda_id\": null,\n                \"soda_desc\": \"\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 639,\n                \"sol_ordertype\": \"Delivery\",\n                \"sol_qty\": 1,\n                \"sol_duedate\": \"2019-08-23\",\n                \"sol_sytt_id_dueslot\": 644,\n                \"sol_dueslot\": \"PM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"Can you delivery between 12:00 to 13:00 pm please\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Complete\",\n                \"sol_created\": \"2019-08-20 07:58:18\"\n            },\n            {\n                \"soh_id\": \"0000238\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 2,\n                \"sop_desc\": \"12 YD Skip\",\n                \"sopa_id\": 4,\n                \"soda_id\": 2,\n                \"soda_desc\": \"Open\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 642,\n                \"sol_ordertype\": \"Collection\",\n                \"sol_qty\": 1,\n                \"sol_duedate\": \"2019-08-21\",\n                \"sol_sytt_id_dueslot\": 644,\n                \"sol_dueslot\": \"PM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Complete\",\n                \"sol_created\": \"2019-08-20 08:04:19\"\n            },\n            {\n                \"soh_id\": \"0000239\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 3,\n                \"sop_desc\": \"20 YD Skip\",\n                \"sopa_id\": 6,\n                \"soda_id\": null,\n                \"soda_desc\": \"\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 642,\n                \"sol_ordertype\": \"Collection\",\n                \"sol_qty\": 1,\n                \"sol_duedate\": \"2019-08-27\",\n                \"sol_sytt_id_dueslot\": 643,\n                \"sol_dueslot\": \"AM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"Please collect between 7:00am to 8:00am.\\nThe access is block for that skip.\\nThanks\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Complete\",\n                \"sol_created\": \"2019-08-20 08:08:11\"\n            },\n            {\n                \"soh_id\": \"0000254\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1275,\n                \"pjs_name\": \"173 Battersea Park Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 1,\n                \"sop_desc\": \"7 YD Skip\",\n                \"sopa_id\": 3,\n                \"soda_id\": null,\n                \"soda_desc\": \"\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 639,\n                \"sol_ordertype\": \"Delivery\",\n                \"sol_qty\": 2,\n                \"sol_duedate\": \"2019-09-10\",\n                \"sol_sytt_id_dueslot\": 643,\n                \"sol_dueslot\": \"AM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"Hounslow House\\nTW3 1PD\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Complete\",\n                \"sol_created\": \"2019-09-07 19:13:25\"\n            },\n            {\n                \"soh_id\": \"0000255\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 3,\n                \"sop_desc\": \"20 YD Skip\",\n                \"sopa_id\": 6,\n                \"soda_id\": null,\n                \"soda_desc\": \"\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 642,\n                \"sol_ordertype\": \"Collection\",\n                \"sol_qty\": 1,\n                \"sol_duedate\": \"2019-09-11\",\n                \"sol_sytt_id_dueslot\": 643,\n                \"sol_dueslot\": \"AM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"between 7:00 to 7:30am please\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Complete\",\n                \"sol_created\": \"2019-09-07 19:18:11\"\n            },\n            {\n                \"soh_id\": \"0000259\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 2,\n                \"sop_desc\": \"12 YD Skip\",\n                \"sopa_id\": 4,\n                \"soda_id\": 2,\n                \"soda_desc\": \"Open\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 640,\n                \"sol_ordertype\": \"Exchange\",\n                \"sol_qty\": 2,\n                \"sol_duedate\": \"2019-09-12\",\n                \"sol_sytt_id_dueslot\": 643,\n                \"sol_dueslot\": \"AM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"one early morning and another one afternoon please\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Complete\",\n                \"sol_created\": \"2019-09-10 17:08:53\"\n            },\n            {\n                \"soh_id\": \"0000265\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 2,\n                \"sop_desc\": \"12 YD Skip\",\n                \"sopa_id\": 4,\n                \"soda_id\": 2,\n                \"soda_desc\": \"Open\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 640,\n                \"sol_ordertype\": \"Exchange\",\n                \"sol_qty\": 2,\n                \"sol_duedate\": \"2019-09-17\",\n                \"sol_sytt_id_dueslot\": 643,\n                \"sol_dueslot\": \"AM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"Please one morning and one afternoon\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Complete\",\n                \"sol_created\": \"2019-09-16 07:33:01\"\n            },\n            {\n                \"soh_id\": \"0000270\",\n                \"soh_type\": \"Order\",\n                \"pjs_id\": 1264,\n                \"pjs_name\": \"Hounslow House, 714 - 746 London Road\",\n                \"sod_id\": 1,\n                \"sod_desc\": \"Container\",\n                \"sop_id\": 3,\n                \"sop_desc\": \"20 YD Skip\",\n                \"sopa_id\": 6,\n                \"soda_id\": null,\n                \"soda_desc\": \"\",\n                \"sods_id\": 5,\n                \"sods_desc\": \"\",\n                \"sol_sytt_id_ordertype\": 642,\n                \"sol_ordertype\": \"Collection\",\n                \"sol_qty\": 1,\n                \"sol_duedate\": \"2019-09-25\",\n                \"sol_sytt_id_dueslot\": 644,\n                \"sol_dueslot\": \"PM\",\n                \"sol_so_required\": \"NO\",\n                \"sol_so_details\": \"\",\n                \"sol_notes\": \"After 2pm please\",\n                \"sodr_id\": null,\n                \"sodr_fullname\": \"\",\n                \"sol_stage\": \"Not Started\",\n                \"sol_status\": \"Open\",\n                \"sol_created\": \"2019-09-23 07:25:39\"\n            }\n        ]\n    }\n}"}],"_postman_id":"05a9af45-fc70-4fa1-bbf4-dcd40a6590ac"},{"name":"fetchClientSites","event":[{"listen":"prerequest","script":{"id":"00c19c29-cd41-4a67-8b10-ed3414878440","exec":["pm.variables.set(\"method\",\"fetchClientSites\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"d9f1a3d9-be96-4754-8414-e51823301b52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pjc_id\"      : 280,\r\n     \"offset\"      : null,\r\n     \"maxrows\"     : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"6c4a2ab2-9e70-4afd-901a-387fab20c00c","name":"fetchClientSites","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"c12767720cb550f142fa8467d374b00f8d6af0a6e1e1c40d07b3b549954b6a72175f5623b9beab3a3219fa610c321e930a2122b5bb52c9044bf478c4faac2583\",\r\n     \"method\"      : \"fetchClientSites\",\r\n     \"pjc_id\"      : \"389\"\r\n    }\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:44:08 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"2569"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"fetchClientSites\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pjs_id\": 264,\n                \"pjs_name\": \"Starlight Point\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"51.61949000\",\n                \"pjs_lng\": \"-0.14251490\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 265,\n                \"pjs_name\": \"MSCP2 - Voyager House T2\",\n                \"pjs_status\": \"Chasing\",\n                \"pjs_lat\": \"55.55748750\",\n                \"pjs_lng\": \"-4.64287320\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 268,\n                \"pjs_name\": \"T1 Pier 3 - Stand 119\",\n                \"pjs_status\": \"Chasing\",\n                \"pjs_lat\": \"51.50820850\",\n                \"pjs_lng\": \"-0.00138230\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 269,\n                \"pjs_name\": \"T1/T2 Baggage - Airside\",\n                \"pjs_status\": \"Chasing\",\n                \"pjs_lat\": \"51.51635110\",\n                \"pjs_lng\": \"-0.17255640\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 270,\n                \"pjs_name\": \"T4 LV Upgrade - Airside Stand 404\",\n                \"pjs_status\": \"Chasing\",\n                \"pjs_lat\": \"51.55273940\",\n                \"pjs_lng\": \"0.05692680\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 271,\n                \"pjs_name\": \"T4 LV Upgrade - Airside - Stand 409\",\n                \"pjs_status\": \"Chasing\",\n                \"pjs_lat\": \"51.55713000\",\n                \"pjs_lng\": \"-0.22575480\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1225,\n                \"pjs_name\": \"Q6 Baggage Project\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"51.31147150\",\n                \"pjs_lng\": \"-0.69896530\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1576,\n                \"pjs_name\": \"AAA\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"51.51870130\",\n                \"pjs_lng\": \"-0.14396870\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1577,\n                \"pjs_name\": \"BBB\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"51.50365070\",\n                \"pjs_lng\": \"-0.29538110\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1578,\n                \"pjs_name\": \"CCC\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"53.19847540\",\n                \"pjs_lng\": \"-2.50495990\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1579,\n                \"pjs_name\": \"DDD\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"54.66950140\",\n                \"pjs_lng\": \"-5.99517220\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1580,\n                \"pjs_name\": \"aaaaaa\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"51.86401210\",\n                \"pjs_lng\": \"-2.49245830\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1581,\n                \"pjs_name\": \"ertetyerty\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"56.64923670\",\n                \"pjs_lng\": \"-2.87404610\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1582,\n                \"pjs_name\": \"aaasssddd\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"51.53256010\",\n                \"pjs_lng\": \"0.58577500\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1583,\n                \"pjs_name\": \"aaasssdddeee\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"51.15407240\",\n                \"pjs_lng\": \"1.02382610\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            },\n            {\n                \"pjs_id\": 1584,\n                \"pjs_name\": \"b1\",\n                \"pjs_status\": \"Active\",\n                \"pjs_lat\": \"51.94175350\",\n                \"pjs_lng\": \"-1.54418770\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"17:00\"\n            }\n        ]\n    }\n}"}],"_postman_id":"d9f1a3d9-be96-4754-8414-e51823301b52"},{"name":"addClient","event":[{"listen":"test","script":{"id":"14d8eca2-9005-4588-a406-13d74f2d4b9a","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"62ec3498-fda1-4cd0-9789-845c69816b7d","exec":["pm.variables.set(\"method\",\"addClient\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"c4551e35-bd7d-48bc-844c-0b25b31875ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjc_name\":\"Belgian Racing Ltd\",\r\n        \"pjc_accno\":\"AAA118\",\r\n        \"custom_fields\": {\r\n          \"2846\": \"\",\r\n          \"72\": \"AAA\",\r\n          \"74\": \"DDD\",\r\n          \"73\": \"on\",\r\n          \"2785\": \"2123.45\",\r\n          \"2784\": \"123\",\r\n          \"2787\" : \"2024-06-30\"\r\n        },\r\n        \"segments\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 651\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 654\r\n          }\r\n        ],\r\n        \"regions\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 812\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 813\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 814\r\n          }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"9f3edb4d-e17c-4b3e-9284-6301e79c5505","name":"addClient","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjc_name\":\"Client 112\",\r\n        \"pjc_accno\":\"AAA112\",\r\n        \"custom_fields\": {\r\n          \"2783\": \"url\",\r\n          \"72\": \"AAA\",\r\n          \"74\": \"DDD\",\r\n          \"73\": \"on\",\r\n          \"2785\": \"2123.45\",\r\n          \"2784\": \"123\",\r\n          \"2787\" : \"2024-06-30\"\r\n        },\r\n        \"segments\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 651\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 654\r\n          }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Aug 2024 11:49:04 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"91"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"addClient\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            \"13636\"\n        ]\n    }\n}"}],"_postman_id":"c4551e35-bd7d-48bc-844c-0b25b31875ed"},{"name":"updateClient","event":[{"listen":"prerequest","script":{"id":"0ef8c788-537c-4ceb-9d23-32733398cc83","exec":["pm.variables.set(\"method\",\"updateClient\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"beda2b90-b255-4208-9bb8-e379e6c9bcdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjc_id\":\"1306\",\r\n        \"pjc_name\":\"British Aviation Co Ltd\",\r\n        \"pjc_website\":\"www.abc.co.uk\",\r\n        \"custom_fields\": {\r\n          \"2846\": \"\",\r\n          \"72\": \"AAA\",\r\n          \"73\": \"on\",\r\n          \"2785\": \"2123.45\",\r\n          \"2784\": \"123\",\r\n          \"2786\": \"333.85\",\r\n          \"2787\" : \"\",\r\n          \"6510\" : \"xxxxx\"\r\n        },\r\n        \"segments\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 651\r\n          },\r\n          {\r\n           \"action\": \"D\",\r\n           \"sytt_id\": 652\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 654\r\n          }\r\n        ],\r\n        \"categories\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 756\r\n          },\r\n          {\r\n           \"action\": \"D\",\r\n           \"sytt_id\": 760\r\n          }\r\n        ],\r\n        \"regions\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 812\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 813\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 814\r\n          }\r\n        ],\r\n        \"documents\": [\r\n            {\r\n             \"filename\": \"thisisaclientdocument.docx\",\r\n             \"documentname\": \"THISISACLIENTDOCUMENT\",\r\n             \"contents\": \"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\"\r\n            },\r\n            {\r\n             \"filename\": \"test.txt\",\r\n             \"documentname\": \"\",\r\n             \"contents\": \"VGhpcyBpcyBhIGNsaWVudCB0ZXh0IGZpbGU=\"\r\n            }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"d54c81b0-e70c-4720-bae5-c5587f2892c5","name":"updateClient","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjc_id\":\"13600\",\r\n        \"pjc_website\":\"www.abc.co.uk\",\r\n        \"custom_fields\": {\r\n          \"2783\": \"url\",\r\n          \"72\": \"AAA\",\r\n          \"74\": \"FFF\",\r\n          \"73\": \"on\",\r\n          \"2785\": \"2123.45\",\r\n          \"2784\": \"123\",\r\n          \"2786\": \"333.85\",\r\n          \"2787\" : \"2024-06-30\"\r\n        },\r\n        \"segments\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 651\r\n          },\r\n          {\r\n           \"action\": \"D\",\r\n           \"sytt_id\": 652\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 654\r\n          }\r\n        ],\r\n        \"categories\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 756\r\n          },\r\n          {\r\n           \"action\": \"D\",\r\n           \"sytt_id\": 760\r\n          }\r\n        ],\r\n        \"regions\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 812\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 813\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 814\r\n          }\r\n        ],\r\n        \"documents\": [\r\n            {\r\n             \"filename\": \"thisisaclientdocument.docx\",\r\n             \"documentname\": \"THISISACLIENTDOCUMENT\",\r\n             \"contents\": \"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\"\r\n            },\r\n            {\r\n             \"filename\": \"test.txt\",\r\n             \"documentname\": \"\",\r\n             \"contents\": \"VGhpcyBpcyBhIGNsaWVudCB0ZXh0IGZpbGU=\"\r\n            }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 14 Aug 2024 12:34:35 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"87"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"updateClient\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"beda2b90-b255-4208-9bb8-e379e6c9bcdf"},{"name":"deleteClient","event":[{"listen":"prerequest","script":{"id":"94ebe6e2-524e-4e58-a36f-5c1eaa2f0faa","exec":["pm.variables.set(\"method\",\"deleteClient\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"0177a9b5-5096-4427-b163-bbb88d591a01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjc_id\":\"13650\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"fc223e4a-018d-4a3d-bb5b-0ccd304bbbe3","name":"deleteClient","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"deleteClient\"},\r\n   \"body\":\r\n     [\r\n       {\"pjc_id\":\"13603\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:49:52 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"93"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"deleteClient\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"0177a9b5-5096-4427-b163-bbb88d591a01"}],"id":"66e47d23-85e6-4204-82d0-0a22f73e23ab","_postman_id":"66e47d23-85e6-4204-82d0-0a22f73e23ab","description":""},{"name":"Offices","item":[{"name":"fetchOffices","event":[{"listen":"prerequest","script":{"id":"dda514fc-ae7c-4641-b110-a7b327bce5f3","exec":["pm.variables.set(\"method\",\"fetchOffices\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"75dc3dc5-680c-453d-af66-5cabbee47cb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pjc_id\"      : 280,\r\n     \"pjo_id\"      : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"245b71d6-e5a3-4b6d-8c62-ddc7b28ad57f","name":"fetchOffices","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pjc_id\"      : 280,\r\n     \"pjo_id\"      : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 16 Nov 2024 11:32:57 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1116"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchOffices\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pjo_id\": 1,\n                \"pjo_name\": \"London Office\",\n                \"pjc_id\": 280,\n                \"pjc_name\": \"BAM Construction LTD\",\n                \"link\": \"mk_client.php?mode=EDIT&pjc_id=280\",\n                \"pjo_address1\": \"24 Chiswell Street\",\n                \"pjo_address2\": \"\",\n                \"pjo_town\": \"\",\n                \"pjo_county\": \"24 Chiswell Street\",\n                \"pjo_pcode\": \"EC1Y 4TY\",\n                \"pjo_phone\": \"020 7374 3600\",\n                \"pjo_lat\": \"51.52089320\",\n                \"pjo_lng\": \"-0.08964990\",\n                \"rdb_id\": null,\n                \"pjo_created\": \"2016-09-08\",\n                \"pjo_updated\": \"2023-12-24\",\n                \"pjo_syu_id_revby\": 9,\n                \"pjo_syu_fullname_revby\": null,\n                \"pjo_syu_id_createdby\": null,\n                \"pjo_syu_fullname_createdby\": null\n            },\n            {\n                \"pjo_id\": 343,\n                \"pjo_name\": \"BAM Construction Ltd\",\n                \"pjc_id\": 280,\n                \"pjc_name\": \"BAM Construction LTD\",\n                \"link\": \"mk_client.php?mode=EDIT&pjc_id=280\",\n                \"pjo_address1\": \"Breakspear Park\",\n                \"pjo_address2\": \"Breakspear Way\",\n                \"pjo_town\": \"Hemel Hempstead\",\n                \"pjo_county\": \"\",\n                \"pjo_pcode\": \"HP2 4FL\",\n                \"pjo_phone\": \"\",\n                \"pjo_lat\": \"51.75951790\",\n                \"pjo_lng\": \"-0.41800440\",\n                \"rdb_id\": null,\n                \"pjo_created\": \"2018-08-21\",\n                \"pjo_updated\": \"2023-12-24\",\n                \"pjo_syu_id_revby\": 34,\n                \"pjo_syu_fullname_revby\": null,\n                \"pjo_syu_id_createdby\": null,\n                \"pjo_syu_fullname_createdby\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"75dc3dc5-680c-453d-af66-5cabbee47cb6"},{"name":"fetchUpdatedOffices","event":[{"listen":"prerequest","script":{"id":"3456d406-b2cc-4541-a2ab-693df6b90eb0","exec":["pm.variables.set(\"method\",\"fetchUpdatedOffices\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"ac2cf1fa-a0d5-462d-bcf9-b679ddd015f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"           : \"{{id}}\",\r\n     \"tenant\"       : \"{{tenant}}\",\r\n     \"email\"        : \"{{email}}\",\r\n     \"password\"     : \"{{password}}\",\r\n     \"method\"       : \"{{method}}\",\r\n     \"updatesSince\" : \"2021-07-01\",\r\n     \"pjc_id\"       : 905,\r\n     \"pjo_id\"       : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"b39b27b7-6bcb-4fec-bee9-3ebc697a862b","name":"fetchUpdatedOffices","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"           : \"{{id}}\",\r\n     \"tenant\"       : \"{{tenant}}\",\r\n     \"email\"        : \"{{email}}\",\r\n     \"password\"     : \"{{password}}\",\r\n     \"method\"       : \"{{method}}\",\r\n     \"updatesSince\" : \"2021-07-01\",\r\n     \"pjc_id\"       : 905,\r\n     \"pjo_id\"       : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 16 Nov 2024 11:33:35 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"568"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUpdatedOffices\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"action\": \"U\",\n                \"pjo_id\": 440,\n                \"pjo_name\": \"Ea'l\\\"in£g\",\n                \"pjc_id\": 905,\n                \"pjc_name\": \"3 G SETS Limited\",\n                \"link\": \"mk_client.php?mode=EDIT&pjc_id=905\",\n                \"pjo_address1\": \"\",\n                \"pjo_address2\": \"\",\n                \"pjo_town\": \"\",\n                \"pjo_county\": \"\",\n                \"pjo_pcode\": \"\",\n                \"pjo_phone\": \"\",\n                \"pjo_lat\": \"0.00000000\",\n                \"pjo_lng\": \"0.00000000\",\n                \"rdb_id\": null,\n                \"pjo_created\": \"2020-09-25\",\n                \"pjo_updated\": \"2024-10-27\",\n                \"pjo_syu_id_revby\": 1,\n                \"pjo_syu_fullname_revby\": \"Steve Curd\",\n                \"pjo_syu_id_createdby\": null,\n                \"pjo_syu_fullname_createdby\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"ac2cf1fa-a0d5-462d-bcf9-b679ddd015f5"},{"name":"addOffice","id":"e2bb0d50-49e5-4d0e-8ec1-0217b5815500","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"addOffice\"},\r\n   \"body\":\r\n     [\r\n       {\"pjc_id\":\"1209\",\r\n        \"pjo_name\":\"Notting Hill GateX3\",\r\n        \"pjo_address1\":\"L1111111111\",\r\n        \"pjo_address2\":\"L222222\",\r\n        \"pjo_town\":\"N Hill\",\r\n        \"pjo_county\":\"London\",\r\n        \"pjo_pcode\":\"W1\",\r\n        \"pjo_phone\":\"020 8111 2222\"\r\n      }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"0c41fe15-a75b-4b07-b34e-643cf59c92fb","name":"addOffice","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"addOffice\"},\r\n   \"body\":\r\n     [\r\n       {\"pjc_id\":\"1209\",\r\n        \"pjo_name\":\"Notting Hill GateX3\",\r\n        \"pjo_address1\":\"L1111111111\",\r\n        \"pjo_address2\":\"L222222\",\r\n        \"pjo_town\":\"N Hill\",\r\n        \"pjo_county\":\"London\",\r\n        \"pjo_pcode\":\"W1\",\r\n        \"pjo_phone\":\"020 8111 2222\"\r\n      }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:56:40 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"95"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"addOffice\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            \"634\"\n        ]\n    }\n}"}],"_postman_id":"e2bb0d50-49e5-4d0e-8ec1-0217b5815500"},{"name":"updateOffice","id":"4e04b5d0-78a1-4ad2-9821-eb037893d205","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"updateOffice\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"pjo_id\":\"485\",\"pjo_name\":\"Notting Hill GateX5\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"026abb3d-30c3-4bbf-b2f2-f234c4c9a2d8","name":"updateOffice","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"updateOffice\"},\r\n   \"body\":\r\n     [\r\n       {\"pjo_id\":\"485\",\r\n        \"pjo_name\":\"Notting Hill GateX5\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:57:19 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"93"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"updateOffice\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"4e04b5d0-78a1-4ad2-9821-eb037893d205"},{"name":"deleteOffice","id":"34b93462-d989-4084-90ad-5d20b5670d4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"deleteOffice\"},\r\n   \"body\":\r\n     [\r\n       {\"pjo_id\":\"591\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"0f795648-e89b-4696-9d53-18147c15d507","name":"deleteOffice","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"deleteOffice\"},\r\n   \"body\":\r\n     [\r\n       {\"pjo_id\":\"591\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 15:58:45 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"93"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"deleteOffice\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"34b93462-d989-4084-90ad-5d20b5670d4c"}],"id":"d50db051-3ffc-4c08-be02-3ec07fcdfaff","_postman_id":"d50db051-3ffc-4c08-be02-3ec07fcdfaff","description":""},{"name":"Quotations","item":[{"name":"fetchQuotations","event":[{"listen":"prerequest","script":{"id":"4acf04cf-8bde-4a00-b2dd-cf4653fdda06","exec":["pm.variables.set(\"method\",\"fetchQuotations\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"acf890f7-d0d6-4914-a714-7a697263b6d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pqh_id\"      : null,\r\n     \"pqq_quoteno\" : 89,\r\n     \"pqh_status\"  : \"Draft\",\r\n     \"allversions\" : \"on\"\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"caef5ea5-6c7e-4921-94fc-a48d9800a2b4","name":"fetchQuotations","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pqh_id\"      : null,\r\n     \"pqq_quoteno\" : null,\r\n     \"pqh_status\"  : \"Draft\",\r\n     \"allversions\" : \"on\"\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 13:18:01 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchQuotations\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pqh_id\": 4,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 7,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 281,\n                \"pjc_name\": \"Hill Partnerships LTD\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"HIL1234\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 14,\n                \"pqh_mkc_fullname_requestedby\": \"Adrian D'Arcy\",\n                \"pqh_mkc_id_site_contact\": 14,\n                \"pqh_mkc_fullname_site_contact\": \"Adrian D'Arcy\",\n                \"pjs_id\": 14,\n                \"pjs_name\": \"Rectory Park Avenue - Phase III\",\n                \"pqh_orderno\": \"POHIL001\",\n                \"pqh_onhire_date\": \"2023-10-13\",\n                \"pqh_delivery_date\": \"2023-10-12\",\n                \"pqh_comments\": \"Lots of comments\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"60.00\",\n                \"pqh_overtime_rate_2\": \"75.00\",\n                \"pqh_weekly_amount\": \"4060.00\",\n                \"pqh_weekly_amount_in_base\": \"4060.00\",\n                \"pqh_created\": \"2023-10-02 12:42:14\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"TELH99\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TELH99\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"90.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"4050.00\",\n                        \"pql_plantno\": \"PLANT001\"\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"TELHATT001\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"10.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"10.00\"\n                    }\n                ],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 29,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 8,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 13467,\n                \"pjc_name\": \"STRABAG UK LTD S275\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"CON100\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 2122,\n                \"pqh_mkc_fullname_requestedby\": \"Rita Curd\",\n                \"pqh_mkc_id_site_contact\": 2123,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 118334,\n                \"pjs_name\": \"Bristol Docks\",\n                \"pqh_orderno\": \"HP-CON100/023\",\n                \"pqh_onhire_date\": \"2023-10-25\",\n                \"pqh_delivery_date\": \"2023-10-24\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"3425.00\",\n                \"pqh_weekly_amount_in_base\": \"3425.00\",\n                \"pqh_created\": \"2023-10-24 17:17:51\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"TH001\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH001\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"65.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2925.00\",\n                        \"pql_plantno\": \"PLT001\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"TH002\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH002\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"50.00\",\n                        \"pql_plantno\": \"PLT002\"\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_code\": \"TH003\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH003\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"10.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"450.00\",\n                        \"pql_plantno\": \"PLT003\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"18\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"Teeth\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 30,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 9,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 389,\n                \"pjc_name\": \"Balfour Beatty Regional Construction (Airport) Limited\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"CON/0001\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 350,\n                \"pqh_mkc_fullname_requestedby\": \"Ben Palmer\",\n                \"pqh_mkc_id_site_contact\": 601,\n                \"pqh_mkc_fullname_site_contact\": \"Connor Taggart\",\n                \"pjs_id\": 264,\n                \"pjs_name\": \"Starlight Point\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-10-25\",\n                \"pqh_delivery_date\": \"2023-10-24\",\n                \"pqh_comments\": \"RTYER6 DRTRYURTU DFTYURTY\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"50.00\",\n                \"pqh_overtime_rate_2\": \"80.00\",\n                \"pqh_weekly_amount\": \"3280.00\",\n                \"pqh_weekly_amount_in_base\": \"3280.00\",\n                \"pqh_created\": \"2023-10-26 19:46:43\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"TH001\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH001\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"70.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"3150.00\",\n                        \"pql_plantno\": \"\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"TH002\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH002\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"40.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"40.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"ATT001\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"90.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"90.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"12\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"24\\\"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 31,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 10,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 885,\n                \"pqh_mkc_fullname_requestedby\": \"Barry Chan\",\n                \"pqh_mkc_id_site_contact\": 902,\n                \"pqh_mkc_fullname_site_contact\": \"Sam  Lewonaski \",\n                \"pjs_id\": 963,\n                \"pjs_name\": \"132 Winnington Road\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-10-31\",\n                \"pqh_delivery_date\": \"2023-10-30\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2250.00\",\n                \"pqh_weekly_amount_in_base\": \"2250.00\",\n                \"pqh_created\": \"2023-10-29 15:47:50\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"KL001\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"KL001\",\n                        \"pql_operated\": null,\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2250.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 35,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 14,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"SSSSSSSSSSSSSS\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1320,\n                \"pqh_mkc_fullname_requestedby\": \"Michael  Page\",\n                \"pqh_mkc_id_site_contact\": 644,\n                \"pqh_mkc_fullname_site_contact\": \"Steve  Rogers \",\n                \"pjs_id\": 731,\n                \"pjs_name\": \"Avebury Court\",\n                \"pqh_orderno\": \"PO001\",\n                \"pqh_onhire_date\": \"2023-11-03\",\n                \"pqh_delivery_date\": \"2023-11-03\",\n                \"pqh_comments\": \"dstddrtyer hrtytryrt vdfg dergtert dstddrtyer hrtytryrt vdfg dergtert dstddrtyer hrtytryrt vdfg dergtert dstddrtyer hrtytryrt vdfg dergtert\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2925.00\",\n                \"pqh_weekly_amount_in_base\": \"2925.00\",\n                \"pqh_created\": \"2023-11-02 10:15:27\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"KM001\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"KM001\",\n                        \"pql_operated\": null,\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"65.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2925.00\",\n                        \"pql_plantno\": \"PLT001\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"9\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"12\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"18\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_desc\": \"Ditch\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 5,\n                        \"pql_desc\": \"Teeth\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 6,\n                        \"pql_desc\": \"Bladed\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 36,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 15,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1282,\n                \"pqh_mkc_fullname_requestedby\": \"Tony  Kelly\",\n                \"pqh_mkc_id_site_contact\": 1325,\n                \"pqh_mkc_fullname_site_contact\": \"Tony Kelly\",\n                \"pjs_id\": 962,\n                \"pjs_name\": \"275 Wood St\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-06\",\n                \"pqh_delivery_date\": \"2023-11-03\",\n                \"pqh_comments\": \"Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments, Some Comments,\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"4905.00\",\n                \"pqh_weekly_amount_in_base\": \"4905.00\",\n                \"pqh_created\": \"2023-11-02 16:31:40\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"1234567890\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"1234567890\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"60.00\",\n                        \"pql_plantno\": \"12345678901234567890\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"1234567890\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"1234567890\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"40.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"1800.00\",\n                        \"pql_plantno\": \"XYZ001\"\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_code\": \"1234567890\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"1234567890\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"65.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2925.00\",\n                        \"pql_plantno\": \"ABC001\"\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"ATT001\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"60.00\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"ATT002\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"40.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"40.00\"\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"ABCDEFGHIJ\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"20.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"20.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"9\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"12\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"Load\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_desc\": \"24\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 5,\n                        \"pql_desc\": \"Teeth\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 37,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 16,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 799,\n                \"pqh_mkc_fullname_requestedby\": \"Ross  Woodridge \",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 520,\n                \"pjs_name\": \"Palace house\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-02\",\n                \"pqh_delivery_date\": \"2023-11-02\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-02 17:08:08\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"QQ001\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"QQ001\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 38,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 17,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1282,\n                \"pqh_mkc_fullname_requestedby\": \"Tony  Kelly\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 731,\n                \"pjs_name\": \"Avebury Court\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-06\",\n                \"pqh_delivery_date\": \"2023-11-06\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-02 18:09:45\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"TH001\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH001\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 39,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 18,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 947,\n                \"pjs_name\": \"11 Tottenham lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-02\",\n                \"pqh_delivery_date\": \"2023-11-02\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-02 18:14:44\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"AAAAAAA\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"AAAAAAA\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 40,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 19,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 947,\n                \"pjs_name\": \"11 Tottenham lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-29\",\n                \"pqh_delivery_date\": \"2023-11-29\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-02 18:18:23\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"sdrrtetet\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"sdrrtetet\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 41,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 20,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 885,\n                \"pqh_mkc_fullname_requestedby\": \"Barry Chan\",\n                \"pqh_mkc_id_site_contact\": 1076,\n                \"pqh_mkc_fullname_site_contact\": \"Adam Melpous\",\n                \"pjs_id\": 947,\n                \"pjs_name\": \"11 Tottenham lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-09\",\n                \"pqh_delivery_date\": \"2023-11-08\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-02 18:19:58\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"sertetry\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"sertetry\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 42,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 21,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 849,\n                \"pqh_mkc_fullname_requestedby\": \"Andy Airs\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 947,\n                \"pjs_name\": \"11 Tottenham lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-09\",\n                \"pqh_delivery_date\": \"2023-11-09\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-03 12:52:29\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"TH001\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH001\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 43,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 22,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 887,\n                \"pqh_mkc_fullname_requestedby\": \"Andy  Airs \",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 963,\n                \"pjs_name\": \"132 Winnington Road\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-03\",\n                \"pqh_delivery_date\": \"2023-11-03\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-03 12:53:19\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"TH002\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH002\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 44,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 23,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 849,\n                \"pqh_mkc_fullname_requestedby\": \"Andy Airs\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 759,\n                \"pjs_name\": \"Caterhatch lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-06\",\n                \"pqh_delivery_date\": \"2023-11-06\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-03 12:58:23\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"TH003\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH003\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 45,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 24,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 885,\n                \"pqh_mkc_fullname_requestedby\": \"Barry Chan\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 563,\n                \"pjs_name\": \"Alex court\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-03\",\n                \"pqh_delivery_date\": \"2023-11-03\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-03 12:59:29\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"TH004\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"TH004\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 46,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 25,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 923,\n                \"pqh_mkc_fullname_site_contact\": \"James  Abbott\",\n                \"pjs_id\": 778,\n                \"pjs_name\": \"Broadwater farm\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-06\",\n                \"pqh_delivery_date\": \"2023-11-06\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2760.00\",\n                \"pqh_weekly_amount_in_base\": \"2760.00\",\n                \"pqh_created\": \"2023-11-05 13:41:41\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DOZWL - Doze\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DOZWL - Doze\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"AA123456789012345678\"\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"ATT001 DFGDG\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"60.00\"\n                    }\n                ],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 48,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 26,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 962,\n                \"pjs_name\": \"275 Wood St\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-06\",\n                \"pqh_delivery_date\": \"2023-11-06\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"50.00\",\n                \"pqh_weekly_amount_in_base\": \"50.00\",\n                \"pqh_created\": \"2023-11-06 12:10:37\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"CRUSH01A - C\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"CRUSH01A - C\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"50.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 49,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 27,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 963,\n                \"pjs_name\": \"132 Winnington Road\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-08\",\n                \"pqh_delivery_date\": \"2023-11-07\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-06 12:19:37\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"CRUSH01A - C\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"CRUSH01A - C\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 50,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 28,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 885,\n                \"pqh_mkc_fullname_requestedby\": \"Barry Chan\",\n                \"pqh_mkc_id_site_contact\": 1076,\n                \"pqh_mkc_fullname_site_contact\": \"Adam Melpous\",\n                \"pjs_id\": 947,\n                \"pjs_name\": \"11 Tottenham lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-07\",\n                \"pqh_delivery_date\": \"2023-11-07\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2250.00\",\n                \"pqh_weekly_amount_in_base\": \"2250.00\",\n                \"pqh_created\": \"2023-11-06 12:37:02\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DOZWL - Doze\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DOZWL - Doze\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2250.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 52,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 30,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 947,\n                \"pjs_name\": \"11 Tottenham lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-09\",\n                \"pqh_delivery_date\": \"2023-11-09\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-06 12:41:17\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 53,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 31,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 885,\n                \"pqh_mkc_fullname_requestedby\": \"Barry Chan\",\n                \"pqh_mkc_id_site_contact\": 1076,\n                \"pqh_mkc_fullname_site_contact\": \"Adam Melpous\",\n                \"pjs_id\": 947,\n                \"pjs_name\": \"11 Tottenham lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-10\",\n                \"pqh_delivery_date\": \"2023-11-10\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-06 12:42:57\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK05 - 5\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK05 - 5\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 54,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 32,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 963,\n                \"pjs_name\": \"132 Winnington Road\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-10\",\n                \"pqh_delivery_date\": \"2023-11-09\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2700.00\",\n                \"pqh_weekly_amount_in_base\": \"2700.00\",\n                \"pqh_created\": \"2023-11-06 12:44:51\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"BACKH - JCB \",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"BACKH - JCB \",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 59,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 33,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 849,\n                \"pqh_mkc_fullname_requestedby\": \"Andy Airs\",\n                \"pqh_mkc_id_site_contact\": 1037,\n                \"pqh_mkc_fullname_site_contact\": \"Mick  Page \",\n                \"pjs_id\": 721,\n                \"pjs_name\": \"Digby street, off roman road\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-10\",\n                \"pqh_delivery_date\": \"2023-11-10\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2250.00\",\n                \"pqh_weekly_amount_in_base\": \"2250.00\",\n                \"pqh_created\": \"2023-11-06 13:50:55\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"BUCKTH - Tel\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"BUCKTH - Tel\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2250.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 60,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 34,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"aaaaaaaaaaaaaaaaaaa\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 2134,\n                \"pqh_mkc_fullname_requestedby\": \"d10 d11\",\n                \"pqh_mkc_id_site_contact\": 2133,\n                \"pqh_mkc_fullname_site_contact\": \"d3 d4\",\n                \"pjs_id\": 731,\n                \"pjs_name\": \"Avebury Court\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2023-11-08\",\n                \"pqh_delivery_date\": \"2023-11-09\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"450.00\",\n                \"pqh_weekly_amount_in_base\": \"450.00\",\n                \"pqh_created\": \"2023-11-06 15:08:14\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"SCRAPER - Mo\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"SCRAPER - Mo\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"10.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"450.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 62,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 36,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"CCCCCCCCCCCC\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 885,\n                \"pqh_mkc_fullname_requestedby\": \"Barry Chan\",\n                \"pqh_mkc_id_site_contact\": 1076,\n                \"pqh_mkc_fullname_site_contact\": \"Adam Melpous\",\n                \"pjs_id\": 963,\n                \"pjs_name\": \"132 Winnington Road\",\n                \"pqh_orderno\": \"HP-1000/001\",\n                \"pqh_onhire_date\": \"2023-11-11\",\n                \"pqh_delivery_date\": \"2023-11-12\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"505.00\",\n                \"pqh_weekly_amount_in_base\": \"505.00\",\n                \"pqh_created\": \"2023-11-06 16:57:46\",\n                \"pqh_syu_id_createdby\": null,\n                \"pqh_syu_fullname_createdby\": null,\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"SCRAPER - Mo\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"SCRAPER - Mo\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"10.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"450.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"att001\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"55.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"55.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"9\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"12\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"18\\\"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 72,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 44,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"CON001XXXXYYY\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 885,\n                \"pqh_mkc_fullname_requestedby\": \"Barry Chan\",\n                \"pqh_mkc_id_site_contact\": 1076,\n                \"pqh_mkc_fullname_site_contact\": \"Adam Melpous\",\n                \"pjs_id\": 556,\n                \"pjs_name\": \"Church lane\",\n                \"pqh_orderno\": \"PO001\",\n                \"pqh_onhire_date\": \"2023-12-19\",\n                \"pqh_delivery_date\": \"2023-12-17\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"900.00\",\n                \"pqh_weekly_amount_in_base\": \"900.00\",\n                \"pqh_created\": \"2023-12-13 17:32:38\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"BR14 - 14 To\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"BR14 - 14 To\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"20.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"900.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 74,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 46,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 556,\n                \"pjs_name\": \"Church lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-17\",\n                \"pqh_delivery_date\": \"2024-01-19\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2250.00\",\n                \"pqh_weekly_amount_in_base\": \"2250.00\",\n                \"pqh_created\": \"2024-01-01 13:58:08\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2250.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 75,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 47,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"AAA111222ddd\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 735,\n                \"pjs_name\": \"Barrow Road, SW16 5PD\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-08\",\n                \"pqh_delivery_date\": \"2024-01-08\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"4530.00\",\n                \"pqh_weekly_amount_in_base\": \"3893.20\",\n                \"pqh_created\": \"2024-01-06 12:32:31\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR - GPS \",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"GPSDR - GPS \",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"100.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"4500.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"SPECIAL 1\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"30.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"30.00\"\n                    }\n                ],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 78,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 49,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"syc_code\": \"AUD\",\n                \"pqh_contractno\": \"ssssssss\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1805,\n                \"pqh_mkc_fullname_requestedby\": \"Steve Curd\",\n                \"pqh_mkc_id_site_contact\": 1805,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 1592,\n                \"pjs_name\": \"Tilbury Docks\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-17\",\n                \"pqh_delivery_date\": \"2024-01-24\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"5745.00\",\n                \"pqh_weekly_amount_in_base\": \"3033.48\",\n                \"pqh_created\": \"2024-01-16 15:31:17\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR - GPS \",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"GPSDR - GPS \",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"1245.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"1245.00\",\n                        \"pql_plantno\": \"ABCDEF\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"100.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"4500.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 79,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 50,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 556,\n                \"pjs_name\": \"Church lane\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-19\",\n                \"pqh_delivery_date\": \"2024-01-31\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"500.00\",\n                \"pqh_weekly_amount_in_base\": \"427.98\",\n                \"pqh_created\": \"2024-01-19 18:01:51\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"500.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"500.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 86,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"off\",\n                \"pqq_quoteno\": 53,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 326,\n                \"pjc_name\": \"Bellway Homes LTD (Kent)\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 223,\n                \"pqh_mkc_fullname_requestedby\": \"Gregg Bacon\",\n                \"pqh_mkc_id_site_contact\": 223,\n                \"pqh_mkc_fullname_site_contact\": \"Gregg Bacon\",\n                \"pjs_id\": 166,\n                \"pjs_name\": \"DRAYTON GARDEN VILLAGE\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-28\",\n                \"pqh_delivery_date\": \"2024-01-31\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"300.00\",\n                \"pqh_weekly_amount_in_base\": \"300.00\",\n                \"pqh_created\": \"2024-01-21 10:25:19\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"300.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"300.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 87,\n                \"pqh_version\": 2,\n                \"pqh_current\": \"off\",\n                \"pqq_quoteno\": 53,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 326,\n                \"pjc_name\": \"Bellway Homes LTD (Kent)\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"CON123\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 223,\n                \"pqh_mkc_fullname_requestedby\": \"Gregg Bacon\",\n                \"pqh_mkc_id_site_contact\": 223,\n                \"pqh_mkc_fullname_site_contact\": \"Gregg Bacon\",\n                \"pjs_id\": 166,\n                \"pjs_name\": \"DRAYTON GARDEN VILLAGE\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-28\",\n                \"pqh_delivery_date\": \"2024-01-31\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"650.00\",\n                \"pqh_weekly_amount_in_base\": \"650.00\",\n                \"pqh_created\": \"2024-01-21 10:25:33\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"300.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"300.00\",\n                        \"pql_plantno\": \"\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"DTRACK04 - 4\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK04 - 4\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"350.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"350.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 88,\n                \"pqh_version\": 3,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 53,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 326,\n                \"pjc_name\": \"Bellway Homes LTD (Kent)\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 223,\n                \"pqh_mkc_fullname_requestedby\": \"Gregg Bacon\",\n                \"pqh_mkc_id_site_contact\": 223,\n                \"pqh_mkc_fullname_site_contact\": \"Gregg Bacon\",\n                \"pjs_id\": 166,\n                \"pjs_name\": \"DRAYTON GARDEN VILLAGE\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-28\",\n                \"pqh_delivery_date\": \"2024-01-31\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"300.00\",\n                \"pqh_weekly_amount_in_base\": \"300.00\",\n                \"pqh_created\": \"2024-01-21 10:25:44\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"300.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"300.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 89,\n                \"pqh_version\": 4,\n                \"pqh_current\": \"off\",\n                \"pqq_quoteno\": 53,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 326,\n                \"pjc_name\": \"Bellway Homes LTD (Kent)\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 223,\n                \"pqh_mkc_fullname_requestedby\": \"Gregg Bacon\",\n                \"pqh_mkc_id_site_contact\": 223,\n                \"pqh_mkc_fullname_site_contact\": \"Gregg Bacon\",\n                \"pjs_id\": 166,\n                \"pjs_name\": \"DRAYTON GARDEN VILLAGE\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-28\",\n                \"pqh_delivery_date\": \"2024-01-31\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"300.00\",\n                \"pqh_weekly_amount_in_base\": \"300.00\",\n                \"pqh_created\": \"2024-01-21 10:35:20\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"300.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"300.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 90,\n                \"pqh_version\": 5,\n                \"pqh_current\": \"off\",\n                \"pqq_quoteno\": 53,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 326,\n                \"pjc_name\": \"Bellway Homes LTD (Kent)\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"CON123\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 223,\n                \"pqh_mkc_fullname_requestedby\": \"Gregg Bacon\",\n                \"pqh_mkc_id_site_contact\": 223,\n                \"pqh_mkc_fullname_site_contact\": \"Gregg Bacon\",\n                \"pjs_id\": 166,\n                \"pjs_name\": \"DRAYTON GARDEN VILLAGE\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-28\",\n                \"pqh_delivery_date\": \"2024-01-31\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"650.00\",\n                \"pqh_weekly_amount_in_base\": \"650.00\",\n                \"pqh_created\": \"2024-01-21 10:42:22\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"300.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"300.00\",\n                        \"pql_plantno\": \"\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"DTRACK04 - 4\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK04 - 4\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"350.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"350.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 92,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 54,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 962,\n                \"pjs_name\": \"275 Wood St\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-01-23\",\n                \"pqh_delivery_date\": \"2024-01-31\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"550.00\",\n                \"pqh_weekly_amount_in_base\": \"470.34\",\n                \"pqh_created\": \"2024-01-21 11:37:40\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"33.00\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"SPEC\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"75211\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR - GPS \",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"GPSDR - GPS \",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"550.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"550.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 99,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 57,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 735,\n                \"pjs_name\": \"Barrow Road, SW16 5PD\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-02-21\",\n                \"pqh_delivery_date\": \"2024-02-29\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2250.00\",\n                \"pqh_weekly_amount_in_base\": \"1921.61\",\n                \"pqh_created\": \"2024-02-22 14:35:40\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"57.00\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"rsdgertrty\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"75211\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2250.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 119,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 60,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"CON001\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 778,\n                \"pjs_name\": \"Broadwater farm\",\n                \"pqh_orderno\": \"PO99001\",\n                \"pqh_onhire_date\": \"2024-03-27\",\n                \"pqh_delivery_date\": \"2024-03-27\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2365.00\",\n                \"pqh_weekly_amount_in_base\": \"2021.84\",\n                \"pqh_created\": \"2024-03-13 16:33:44\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"30.00\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"on\",\n                    \"Other_7_Transport\": \"2024-05-31\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR - GPS \",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"GPSDR - GPS \",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2250.00\",\n                        \"pql_plantno\": \"\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"DTRACK03 - 3\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DTRACK03 - 3\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"100.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"100.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"Special Atta\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"10.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"10.00\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"Special Atta\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"5.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"5.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"12\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"18\\\"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 122,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 63,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 1306,\n                \"pjc_name\": \"0000011122Xyz1aaB\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 2161,\n                \"pqh_mkc_fullname_requestedby\": \"Laurence O'Arabia\",\n                \"pqh_mkc_id_site_contact\": 2192,\n                \"pqh_mkc_fullname_site_contact\": \"New Contact Test YYY\",\n                \"pjs_id\": 118339,\n                \"pjs_name\": \"Oracle Centre\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-05-16\",\n                \"pqh_delivery_date\": \"2024-05-30\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"150.00\",\n                \"pqh_weekly_amount_in_base\": \"150.00\",\n                \"pqh_created\": \"2024-05-16 11:22:30\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR - GPS \",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"GPSDR - GPS \",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"150.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"150.00\",\n                        \"pql_plantno\": \"\"\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 125,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 65,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"syc_code\": \"AUD\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1805,\n                \"pqh_mkc_fullname_requestedby\": \"Steve Curd\",\n                \"pqh_mkc_id_site_contact\": 1805,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 118423,\n                \"pjs_name\": \"Ealing Docks\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-05-17\",\n                \"pqh_delivery_date\": \"2024-05-31\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"200.00\",\n                \"pqh_weekly_amount_in_base\": \"105.60\",\n                \"pqh_created\": \"2024-05-16 11:54:22\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 17:38:30\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR - GPS \",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"GPSDR - GPS \",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"200.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"200.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 127,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 67,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 13504,\n                \"pjc_name\": \"GROUNDSOURCE UK LIMITED G187\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"GGGCON001\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 2243,\n                \"pqh_mkc_fullname_requestedby\": \"Steve Curd\",\n                \"pqh_mkc_id_site_contact\": 2243,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 118426,\n                \"pjs_name\": \"Wapping Docks\",\n                \"pqh_orderno\": \"GGGORD001\",\n                \"pqh_onhire_date\": \"2024-05-22\",\n                \"pqh_delivery_date\": \"2024-05-21\",\n                \"pqh_comments\": \"These are some comments from the quotation\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"655.00\",\n                \"pqh_weekly_amount_in_base\": \"655.00\",\n                \"pqh_created\": \"2024-05-20 15:16:09\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 18:19:14\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR - GPS \",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"GPSDR - GPS \",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"50.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"BACKHE - Bac\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"BACKHE - Bac\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"500.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"500.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_code\": \"GPSBASE - GP\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"GPSBASE - GP\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"25.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"25.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"Attachment 1\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"50.00\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"Attachment 2\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"30.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"30.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"9\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"Load\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"18\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_desc\": \"Ditch\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 5,\n                        \"pql_desc\": \"24\\\"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 6,\n                        \"pql_desc\": \"36\\\"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 128,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 68,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 13504,\n                \"pjc_name\": \"GROUNDSOURCE UK LIMITED G187\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 2243,\n                \"pqh_mkc_fullname_requestedby\": \"Steve Curd\",\n                \"pqh_mkc_id_site_contact\": 2243,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 118426,\n                \"pjs_name\": \"Wapping Docks\",\n                \"pqh_orderno\": \"PO9901\",\n                \"pqh_onhire_date\": \"2024-05-22\",\n                \"pqh_delivery_date\": \"2024-05-23\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"125.00\",\n                \"pqh_weekly_amount_in_base\": \"125.00\",\n                \"pqh_created\": \"2024-05-20 18:42:19\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 18:42:33\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR - GPS \",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"GPSDR - GPS \",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"50.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"BACKHE - Bac\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"BACKHE - Bac\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"75.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"75.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 129,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 69,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 13504,\n                \"pjc_name\": \"GROUNDSOURCE UK LIMITED G187\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 2243,\n                \"pqh_mkc_fullname_requestedby\": \"Steve Curd\",\n                \"pqh_mkc_id_site_contact\": 2243,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 118426,\n                \"pjs_name\": \"Wapping Docks\",\n                \"pqh_orderno\": \"PO9902\",\n                \"pqh_onhire_date\": \"2024-05-22\",\n                \"pqh_delivery_date\": \"2024-05-22\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"100.00\",\n                \"pqh_weekly_amount_in_base\": \"100.00\",\n                \"pqh_created\": \"2024-05-20 18:44:00\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-05-20 18:45:59\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DOZW - Dozer\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"DOZW - Dozer\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"100.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"100.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 131,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 71,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 778,\n                \"pjs_name\": \"Broadwater farm\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-05\",\n                \"pqh_delivery_date\": \"2024-06-27\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"50.00\",\n                \"pqh_weekly_amount_in_base\": \"42.60\",\n                \"pqh_created\": \"2024-06-05 10:58:53\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-05 10:59:06\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"HSHEARS - Hy\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"HSHEARS - Hy\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"50.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"12\\\"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 136,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 72,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 885,\n                \"pqh_mkc_fullname_requestedby\": \"Barry Chan\",\n                \"pqh_mkc_id_site_contact\": 1076,\n                \"pqh_mkc_fullname_site_contact\": \"Adam Melpous\",\n                \"pjs_id\": 735,\n                \"pjs_name\": \"Barrow Road, SW16 5PD\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-20\",\n                \"pqh_delivery_date\": \"2024-06-27\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"11700.00\",\n                \"pqh_weekly_amount_in_base\": \"9888.49\",\n                \"pqh_created\": \"2024-06-19 17:42:27\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-19 17:50:51\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPSDR\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2250.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"HSHEARS\",\n                        \"pjac_id\": 90,\n                        \"pql_desc\": \"HSHEARS\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2700.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_code\": \"MUNCHYD\",\n                        \"pjac_id\": 96,\n                        \"pql_desc\": \"MUNCHYD\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"70.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"3150.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_code\": \"DTRACK05\",\n                        \"pjac_id\": 242,\n                        \"pql_desc\": \"DTRACK05\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"80.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"3600.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 137,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 73,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 735,\n                \"pjs_name\": \"Barrow Road, SW16 5PD\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-21\",\n                \"pqh_delivery_date\": \"2024-06-28\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"9051.00\",\n                \"pqh_weekly_amount_in_base\": \"7648.35\",\n                \"pqh_created\": \"2024-06-20 12:13:34\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-20 13:33:04\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPSDR\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"2250.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"DTRACK12\",\n                        \"pjac_id\": 139,\n                        \"pql_desc\": \"DTRACK12\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"150.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"6750.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"25.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"25.00\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"26.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"26.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 142,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 74,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 962,\n                \"pjs_name\": \"275 Wood St\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-24\",\n                \"pqh_delivery_date\": \"2024-07-01\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"19601.00\",\n                \"pqh_weekly_amount_in_base\": \"16563.39\",\n                \"pqh_created\": \"2024-06-20 13:37:33\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-20 13:40:32\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"BACKH\",\n                        \"pjac_id\": 25,\n                        \"pql_desc\": \"BACKH\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"25.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"1125.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"DTRACK03\",\n                        \"pjac_id\": 240,\n                        \"pql_desc\": \"DTRACK03\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"100.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"4500.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_code\": \"DTRACK06\",\n                        \"pjac_id\": 243,\n                        \"pql_desc\": \"DTRACK06\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"150.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"6750.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_code\": \"DTRUCK12\",\n                        \"pjac_id\": 127,\n                        \"pql_desc\": \"DTRUCK12\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"160.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"7200.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"26.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"26.00\"\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"0.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"0.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 143,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 75,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 465,\n                \"pjs_name\": \"Alex Court\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-21\",\n                \"pqh_delivery_date\": \"2024-06-28\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"687.00\",\n                \"pqh_weekly_amount_in_base\": \"580.53\",\n                \"pqh_created\": \"2024-06-20 13:42:43\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-20 13:43:36\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPSDR\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"1.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"45.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"DTRACK03\",\n                        \"pjac_id\": 240,\n                        \"pql_desc\": \"DTRACK03\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"3.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"135.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_code\": \"DTRACK04\",\n                        \"pjac_id\": 241,\n                        \"pql_desc\": \"DTRACK04\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"4.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"180.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_code\": \"DTRACK05\",\n                        \"pjac_id\": 242,\n                        \"pql_desc\": \"DTRACK05\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"5.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"225.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"102.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"102.00\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"0.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"0.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 144,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 76,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 885,\n                \"pqh_mkc_fullname_requestedby\": \"Barry Chan\",\n                \"pqh_mkc_id_site_contact\": 1076,\n                \"pqh_mkc_fullname_site_contact\": \"Adam Melpous\",\n                \"pjs_id\": 963,\n                \"pjs_name\": \"132 Winnington Road\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-21\",\n                \"pqh_delivery_date\": \"2024-06-28\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"47.00\",\n                \"pqh_weekly_amount_in_base\": \"39.72\",\n                \"pqh_created\": \"2024-06-20 13:46:29\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-20 13:46:29\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPSDR\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"1.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"45.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"2.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"2.00\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"0.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"0.00\"\n                    }\n                ],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 145,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 77,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 465,\n                \"pjs_name\": \"Alex Court\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-21\",\n                \"pqh_delivery_date\": \"2024-06-28\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"45.00\",\n                \"pqh_weekly_amount_in_base\": \"38.03\",\n                \"pqh_created\": \"2024-06-20 13:47:43\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-20 13:47:43\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPSDR\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"1.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"45.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"0.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"0.00\"\n                    }\n                ],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 146,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 78,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 963,\n                \"pjs_name\": \"132 Winnington Road\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-21\",\n                \"pqh_delivery_date\": \"2024-06-28\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"45.00\",\n                \"pqh_weekly_amount_in_base\": \"38.03\",\n                \"pqh_created\": \"2024-06-20 13:52:14\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-20 13:52:14\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPSDR\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"1.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"45.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 147,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 79,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 13504,\n                \"pjc_name\": \"GROUNDSOURCE UK LIMITED G187\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 2243,\n                \"pqh_mkc_fullname_requestedby\": \"Steve Curd\",\n                \"pqh_mkc_id_site_contact\": 2243,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 118426,\n                \"pjs_name\": \"Wapping Docks\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-21\",\n                \"pqh_delivery_date\": \"2024-06-28\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"892.00\",\n                \"pqh_weekly_amount_in_base\": \"892.00\",\n                \"pqh_created\": \"2024-06-20 13:53:56\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-20 14:16:38\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPSDR\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"1.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"45.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"DTRACK03\",\n                        \"pjac_id\": 240,\n                        \"pql_desc\": \"DTRACK03\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"3.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"135.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_code\": \"DTRACK04\",\n                        \"pjac_id\": 241,\n                        \"pql_desc\": \"DTRACK04\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"4.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"180.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_code\": \"DTRACK05\",\n                        \"pjac_id\": 242,\n                        \"pql_desc\": \"DTRACK05\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"5.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"225.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"101.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"101.00\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"102.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"102.00\"\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"104.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"104.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 148,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 80,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 13504,\n                \"pjc_name\": \"GROUNDSOURCE UK LIMITED G187\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 2243,\n                \"pqh_mkc_fullname_requestedby\": \"Steve Curd\",\n                \"pqh_mkc_id_site_contact\": 2243,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 118426,\n                \"pjs_name\": \"Wapping Docks\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-21\",\n                \"pqh_delivery_date\": \"2024-06-28\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"2310.00\",\n                \"pqh_weekly_amount_in_base\": \"2310.00\",\n                \"pqh_created\": \"2024-06-20 14:54:16\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-20 16:48:36\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPSDR\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"25.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"1125.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"HSHEARS\",\n                        \"pjac_id\": 90,\n                        \"pql_desc\": \"Hydraulic Shears\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"26.00\",\n                        \"pql_per\": \"Per Hour\",\n                        \"pql_weekly_amount\": \"1170.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"ATCH\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"15.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"15.00\"\n                    }\n                ],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 149,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 81,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"syc_code\": \"AUD\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1805,\n                \"pqh_mkc_fullname_requestedby\": \"Steve Curd\",\n                \"pqh_mkc_id_site_contact\": 1807,\n                \"pqh_mkc_fullname_site_contact\": \"Joe Bloggx\",\n                \"pjs_id\": 118423,\n                \"pjs_name\": \"Ealing Docks\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-06-26\",\n                \"pqh_delivery_date\": \"2024-06-29\",\n                \"pqh_comments\": \"QCCCCCCCCCCC OMMMMMM\",\n                \"pqh_internalnotes\": \"QCCCCCCCCCCCCCCCCCCCCCCCCCCC\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"50.00\",\n                \"pqh_weekly_amount_in_base\": \"26.19\",\n                \"pqh_created\": \"2024-06-26 19:30:16\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-06-26 19:34:12\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPS DRONE\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"50.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 153,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 85,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"syc_code\": \"EUR\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1076,\n                \"pqh_mkc_fullname_requestedby\": \"Adam Melpous\",\n                \"pqh_mkc_id_site_contact\": 885,\n                \"pqh_mkc_fullname_site_contact\": \"Barry Chan\",\n                \"pjs_id\": 830,\n                \"pjs_name\": \"Cherry tree\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-07-31\",\n                \"pqh_delivery_date\": \"2024-08-28\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"50.00\",\n                \"pqh_weekly_amount_in_base\": \"42.12\",\n                \"pqh_created\": \"2024-07-31 15:16:34\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-07-31 15:16:34\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"off\",\n                    \"Other_2789_PermitRequired\": \"off\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"0\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"HSHEARS\",\n                        \"pjac_id\": 90,\n                        \"pql_desc\": \"Hydraulic Shears\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"50.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 154,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 86,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1807,\n                \"pqh_mkc_fullname_requestedby\": \"Joe Bloggx\",\n                \"pqh_mkc_id_site_contact\": 1805,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 1592,\n                \"pjs_name\": \"Tilbury Docks\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-07-31\",\n                \"pqh_delivery_date\": \"2024-07-31\",\n                \"pqh_comments\": \"quotecommentssssssssssssssssss\",\n                \"pqh_internalnotes\": \"internalcommentsssssssssss\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"100.00\",\n                \"pqh_weekly_amount_in_base\": \"100.00\",\n                \"pqh_created\": \"2024-07-31 15:17:33\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-07-31 15:28:35\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"off\",\n                    \"Other_2789_PermitRequired\": \"off\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"0\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"DTRACK03\",\n                        \"pjac_id\": 240,\n                        \"pql_desc\": \"3 Tonne Tracked Dumper\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"100.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"100.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [],\n                \"buckets\": []\n            },\n            {\n                \"pqh_id\": 155,\n                \"pqh_version\": 2,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 82,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 13504,\n                \"pjc_name\": \"GROUNDSOURCE UK LIMITED G187\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 2243,\n                \"pqh_mkc_fullname_requestedby\": \"Steve Curd\",\n                \"pqh_mkc_id_site_contact\": 2243,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 118426,\n                \"pjs_name\": \"Wapping Docks\",\n                \"pqh_orderno\": \"HP-1000/0001\",\n                \"pqh_onhire_date\": \"2024-07-17\",\n                \"pqh_delivery_date\": \"2024-07-31\",\n                \"pqh_comments\": \"bbbbbbbbbbbbbbbb\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"451.50\",\n                \"pqh_weekly_amount_in_base\": \"451.50\",\n                \"pqh_created\": \"2024-08-12 17:13:09\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-08-12 17:13:09\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"200.00\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"Â£1,000\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"off\",\n                    \"Other_6_MaximumUsage:\": \"off\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"Â£133\",\n                    \"Other_9_Substitution\": \"\",\n                    \"Other_2789_PermitRequired\": \"\",\n                    \"Other_19_PermitValidUntil\": \"0\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"\",\n                        \"pql_operated\": \"off\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Per Month\",\n                        \"pql_weekly_amount\": \"37.50\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"DTRACK03\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"75.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"75.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_code\": \"BR14\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"40.00\",\n                        \"pql_per\": \"Set Charge\",\n                        \"pql_weekly_amount\": \"40.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_code\": \"BR24\",\n                        \"pjac_id\": 0,\n                        \"pql_desc\": \"\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"35.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"35.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"75.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"75.00\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"100.00\",\n                        \"pql_per\": \"Set Charge\",\n                        \"pql_weekly_amount\": \"100.00\"\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"45.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"45.00\"\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"44.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"44.00\"\n                    }\n                ],\n                \"buckets\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 4,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 5,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 6,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 7,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 8,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 9,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 10,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    },\n                    {\n                        \"pql_seq\": 11,\n                        \"pql_desc\": \"\",\n                        \"pql_quantity\": 1\n                    }\n                ]\n            },\n            {\n                \"pqh_id\": 156,\n                \"pqh_version\": 1,\n                \"pqh_current\": \"on\",\n                \"pqq_quoteno\": 87,\n                \"pqh_status\": \"Draft\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"syc_code\": \"GBP\",\n                \"pqh_contractno\": \"\",\n                \"pqh_advicenote\": \"off\",\n                \"pqh_syu_id_producedby\": 1,\n                \"pqh_syu_fullname_producedby\": \"Steve Curd\",\n                \"pqh_mkc_id_requestedby\": 1807,\n                \"pqh_mkc_fullname_requestedby\": \"Joe Bloggx\",\n                \"pqh_mkc_id_site_contact\": 1805,\n                \"pqh_mkc_fullname_site_contact\": \"Steve Curd\",\n                \"pjs_id\": 118423,\n                \"pjs_name\": \"Ealing Docks\",\n                \"pqh_orderno\": \"\",\n                \"pqh_onhire_date\": \"2024-08-13\",\n                \"pqh_delivery_date\": \"2024-08-27\",\n                \"pqh_comments\": \"\",\n                \"pqh_internalnotes\": \"\",\n                \"pqh_overtime_rate_1\": \"0.00\",\n                \"pqh_overtime_rate_2\": \"0.00\",\n                \"pqh_weekly_amount\": \"620.00\",\n                \"pqh_weekly_amount_in_base\": \"620.00\",\n                \"pqh_created\": \"2024-08-13 11:59:23\",\n                \"pqh_syu_id_createdby\": 1,\n                \"pqh_syu_fullname_createdby\": \"Steve Curd\",\n                \"pqh_updated\": \"2024-08-13 14:17:10\",\n                \"pqh_syu_id_revby\": 1,\n                \"pqh_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"Other_3_Pricesbasedonahiredurationof:\": \"\",\n                    \"Other_4_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_5_RefuelCharges(SeeCondition7):\": \"\",\n                    \"Other_6_MaximumUsage:\": \"\",\n                    \"Other_7_Transport\": \"\",\n                    \"Other_8_SpecialRequests\": \"\",\n                    \"Other_9_Substitution\": \"off\",\n                    \"Other_2789_PermitRequired\": \"off\",\n                    \"Other_19_PermitValidUntil\": \"\",\n                    \"Other_2790_InUsewithContract\": \"\",\n                    \"Other_2791_FleetNumber\": \"\",\n                    \"Other_2793_T&Cs\": \"0\"\n                },\n                \"requirements\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_code\": \"GPSDR\",\n                        \"pjac_id\": 230,\n                        \"pql_desc\": \"GPS DRONEx\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"55.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"55.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_code\": \"BACKHE\",\n                        \"pjac_id\": 128,\n                        \"pql_desc\": \"Backhoe Extra Charge\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"60.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"60.00\",\n                        \"pql_plantno\": null\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_code\": \"SAFETYS\",\n                        \"pjac_id\": 22,\n                        \"pql_desc\": \"Safety Equiptment\",\n                        \"pql_operated\": \"on\",\n                        \"pql_quantity\": 2,\n                        \"pql_rate\": \"200.00\",\n                        \"pql_per\": \"Sale Item\",\n                        \"pql_weekly_amount\": \"400.00\",\n                        \"pql_plantno\": null\n                    }\n                ],\n                \"attachments\": [\n                    {\n                        \"pql_seq\": 1,\n                        \"pql_desc\": \"att1\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"25.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"25.00\"\n                    },\n                    {\n                        \"pql_seq\": 2,\n                        \"pql_desc\": \"att2\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"30.00\",\n                        \"pql_per\": \"Per Week\",\n                        \"pql_weekly_amount\": \"30.00\"\n                    },\n                    {\n                        \"pql_seq\": 3,\n                        \"pql_desc\": \"att3\",\n                        \"pql_quantity\": 1,\n                        \"pql_rate\": \"50.00\",\n                        \"pql_per\": \"Set Charge\",\n                        \"pql_weekly_amount\": \"50.00\"\n                    }\n                ],\n                \"buckets\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"acf890f7-d0d6-4914-a714-7a697263b6d6"}],"id":"1d6f6e73-f6ad-49c1-aa1b-13b3fdb157c7","_postman_id":"1d6f6e73-f6ad-49c1-aa1b-13b3fdb157c7","description":""},{"name":"Hire Contracts","item":[{"name":"fetchHireContracts","event":[{"listen":"prerequest","script":{"id":"20c1f8ea-0b4f-4fe3-8547-c05e7c2cae3e","exec":["pm.variables.set(\"method\",\"fetchHireContracts\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"1a39816f-0684-4fa7-8e6b-c2022a19956f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pjh_id\"      : null,\r\n     \"pjh_contractnumber\" : null,\r\n     \"pjh_status\"  : \"O\",\r\n     \"pjc_id\"      : null,\r\n     \"pjs_id\"      : null\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"bb1862cd-76de-4084-8fc4-1560f55c272e","name":"fetchHireContracts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pjh_id\"      : null,\r\n     \"pjh_contractnumber\" : null,\r\n     \"pjh_status\"  : \"O\",\r\n     \"pjc_id\"      : null,\r\n     \"pjs_id\"      : null\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 15 Oct 2024 15:24:15 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchHireContracts\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pjh_id\": 1,\n                \"pjh_contractnumber\": \"PH78427\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117848,\n                \"pjs_name\": \"ACCOMODATION ROAD\",\n                \"pjh_deliverydate\": \"2022-05-17\",\n                \"syrinx_id\": 140029,\n                \"syrinx_raised\": \"2024-03-17 11:55:57\",\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2024-03-17\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK90\",\n                        \"pjhl_description\": \"JOHN DEERE 6195M TRACTOR *CLASS 1*\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:37\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 2,\n                \"pjh_contractnumber\": \"PH80732\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13275,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD (FAW V056\",\n                \"pjs_id\": 117845,\n                \"pjs_name\": \"FAWLEY - SO45\",\n                \"pjh_deliverydate\": \"2022-11-21\",\n                \"syrinx_id\": 151493,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 2,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T75\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 3,\n                \"pjh_contractnumber\": \"WPH34456/A\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117547,\n                \"pjs_name\": \"WATER ORTON\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 153133,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 3,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 4,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T178\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D EARTH WORKS READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 5,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 6,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 4,\n                \"pjh_contractnumber\": \"WPH21325/A\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117555,\n                \"pjs_name\": \"SALTLEY BUSINESS PARK\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 153184,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 7,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 8,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T84\",\n                        \"pjhl_description\": \"14 TONNE EWR130E VOLVO RUBBER DUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 9,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW2\",\n                        \"pjhl_description\": \"X WATCH SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 10,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT2\",\n                        \"pjhl_description\": \"X WATCH HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 11,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 12,\n                        \"pjhl_seq\": 6,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 5,\n                \"pjh_contractnumber\": \"WSD38654\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12577,\n                \"pjc_name\": \"H W MARTIN SAFETY FENCING LTD H059\",\n                \"pjs_id\": 117673,\n                \"pjs_name\": \"Head Office\",\n                \"pjh_deliverydate\": \"2023-01-06\",\n                \"syrinx_id\": 153562,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 13,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T105\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 14,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR445\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 6,\n                \"pjh_contractnumber\": \"WSD38655\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12577,\n                \"pjc_name\": \"H W MARTIN SAFETY FENCING LTD H059\",\n                \"pjs_id\": 117673,\n                \"pjs_name\": \"Head Office\",\n                \"pjh_deliverydate\": \"2023-01-06\",\n                \"syrinx_id\": 153565,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 15,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T69\",\n                        \"pjhl_description\": \"3 TONNE E26 BOBCAT EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 16,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T181\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR UNICONTROL READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 7,\n                \"pjh_contractnumber\": \"SDW82326\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117847,\n                \"pjs_name\": \"FARNBOROUGH - GU14 0LZ\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 153610,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 17,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"PILEHAMM\",\n                        \"pjhl_stockno\": \"XPILEHAMM\",\n                        \"pjhl_description\": \"EMV TO SUIT 20T EXC\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 8,\n                \"pjh_contractnumber\": \"SDW82506\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10967,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S100\",\n                \"pjs_id\": 117895,\n                \"pjs_name\": \"A14 J47A - J49\",\n                \"pjh_deliverydate\": \"2023-01-17\",\n                \"syrinx_id\": 154315,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 18,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9S\",\n                        \"pjhl_stockno\": \"DVD9TS21\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 9,\n                \"pjh_contractnumber\": \"NPH3958\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117746,\n                \"pjs_name\": \"HEREFORD -- HR2 6FG\",\n                \"pjh_deliverydate\": \"2023-01-17\",\n                \"syrinx_id\": 154331,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 19,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK22\",\n                        \"pjhl_stockno\": \"RD22T15\",\n                        \"pjhl_description\": \"(XW5) EWR170E VOLVO WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 10,\n                \"pjh_contractnumber\": \"PH81458\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13275,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD (FAW V056\",\n                \"pjs_id\": 117845,\n                \"pjs_name\": \"FAWLEY - SO45\",\n                \"pjh_deliverydate\": \"2023-01-24\",\n                \"syrinx_id\": 154610,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 20,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T29\",\n                        \"pjhl_description\": \"M314F CAT WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 11,\n                \"pjh_contractnumber\": \"SDW82686\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10532,\n                \"pjc_name\": \"ERITH PLANT SERVICES LIMITED 319\",\n                \"pjs_id\": 117646,\n                \"pjs_name\": \"HOLBORN - EC1A\",\n                \"pjh_deliverydate\": \"2023-01-30\",\n                \"syrinx_id\": 154920,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 21,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ77\",\n                        \"pjhl_description\": \"25 TONNE CAT325FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 22,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HA\",\n                        \"pjhl_stockno\": \"PROBE2\",\n                        \"pjhl_description\": \"PROBE TO FIT 20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 12,\n                \"pjh_contractnumber\": \"WPH35652\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117552,\n                \"pjs_name\": \"WASHWOOD HEATH,\",\n                \"pjh_deliverydate\": \"2023-02-03\",\n                \"syrinx_id\": 155221,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 23,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 24,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T33\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 335F EXCAVATOR ZERO TAIL C/W BLADE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 25,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 13,\n                \"pjh_contractnumber\": \"WSD39071\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117549,\n                \"pjs_name\": \"WELSH ROAD COMPOUND - CV33 9BG\",\n                \"pjh_deliverydate\": \"2023-02-02\",\n                \"syrinx_id\": 155228,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 26,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T93\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 27,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T85\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 14,\n                \"pjh_contractnumber\": \"PH81591\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11689,\n                \"pjc_name\": \"MICK GEORGE LIMITED M042\",\n                \"pjs_id\": 117742,\n                \"pjs_name\": \"CAMBS - CB25\",\n                \"pjh_deliverydate\": \"2023-02-03\",\n                \"syrinx_id\": 155270,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 28,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T59\",\n                        \"pjhl_description\": \"40 TONNE CAT336HSR 2 D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 15,\n                \"pjh_contractnumber\": \"WSD39362\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117906,\n                \"pjs_name\": \"DINORWIG PENTIR CABLE REPLACEMENT\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 156286,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 29,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T274\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 30,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 31,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE224\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 13T/20T\\r\\nCONQUIP 13/21 TONNE EXCAVATOR FORKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 16,\n                \"pjh_contractnumber\": \"PH81936\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117627,\n                \"pjs_name\": \"NEWBOROUGH - PE6\",\n                \"pjh_deliverydate\": \"2023-03-06\",\n                \"syrinx_id\": 157023,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 32,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T15\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 17,\n                \"pjh_contractnumber\": \"PH82033\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12821,\n                \"pjc_name\": \"RIVERLINX CJV R273\",\n                \"pjs_id\": 117794,\n                \"pjs_name\": \"CANNING TOWN - E16\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 157473,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 33,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T224\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 3D EARTHWORKS READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 18,\n                \"pjh_contractnumber\": \"PH82051\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12496,\n                \"pjc_name\": \"SCS JV S135\",\n                \"pjs_id\": 117803,\n                \"pjs_name\": \"EUSTON - HAMPSTEAD ROAD\",\n                \"pjh_deliverydate\": \"2023-03-13\",\n                \"syrinx_id\": 157531,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 34,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T166\",\n                        \"pjhl_description\": \"5 TONNE CAT305 07A CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 19,\n                \"pjh_contractnumber\": \"PH82151\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10967,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S100\",\n                \"pjs_id\": 117895,\n                \"pjs_name\": \"A14 J47A - J49\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 158001,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 35,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T30\",\n                        \"pjhl_description\": \"14 TONNE HITACHI ZX140W-6 RUBBER DUCK\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 36,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"COMPAC\",\n                        \"pjhl_stockno\": \"CP43\",\n                        \"pjhl_description\": \"PRODEM PHC150 COMPACTION PLATE (13T/20T)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 20,\n                \"pjh_contractnumber\": \"SDW83560\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10532,\n                \"pjc_name\": \"ERITH PLANT SERVICES LIMITED 319\",\n                \"pjs_id\": 117646,\n                \"pjs_name\": \"HOLBORN - EC1A\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 158863,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 37,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T34\",\n                        \"pjhl_description\": \"5 TONNE HITACHI ZX55U-5A  EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 21,\n                \"pjh_contractnumber\": \"WPH40376\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10517,\n                \"pjc_name\": \"PJ CAREY PLANT HIRE (OVAL) LTD 010\",\n                \"pjs_id\": 117784,\n                \"pjs_name\": \"SKELTON GRANGE EFW\",\n                \"pjh_deliverydate\": \"2023-04-03\",\n                \"syrinx_id\": 158970,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 38,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T54\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308E-2\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 22,\n                \"pjh_contractnumber\": \"WSD40516\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117874,\n                \"pjs_name\": \"COLESHILL VIADUCT WEST\",\n                \"pjh_deliverydate\": \"2023-04-04\",\n                \"syrinx_id\": 158991,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 39,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T03\",\n                        \"pjhl_description\": \"BOMAG BW219D-5 ROLLER SELF PROPELLED 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 40,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 41,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSACC\",\n                        \"pjhl_stockno\": \"GPSCKBOMAP\",\n                        \"pjhl_description\": \"BOMAP COMPACTION MONITORING SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 23,\n                \"pjh_contractnumber\": \"WSD40556\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13354,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S122\",\n                \"pjs_id\": 117701,\n                \"pjs_name\": \"KEX GILL\",\n                \"pjh_deliverydate\": \"2023-04-10\",\n                \"syrinx_id\": 159108,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 42,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD6S\",\n                        \"pjhl_stockno\": \"DVD6TS43\",\n                        \"pjhl_description\": \"DV60 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 24,\n                \"pjh_contractnumber\": \"PH82527\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13275,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD (FAW V056\",\n                \"pjs_id\": 117846,\n                \"pjs_name\": \"SOUTHAMPTON - SO45 3NY\",\n                \"pjh_deliverydate\": \"2023-04-23\",\n                \"syrinx_id\": 159957,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 43,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9S\",\n                        \"pjhl_stockno\": \"DVD9TS20\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 25,\n                \"pjh_contractnumber\": \"SDW83907\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12821,\n                \"pjc_name\": \"RIVERLINX CJV R273\",\n                \"pjs_id\": 117794,\n                \"pjs_name\": \"CANNING TOWN - E16\",\n                \"pjh_deliverydate\": \"2023-04-20\",\n                \"syrinx_id\": 159966,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 44,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T82\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 45,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"FIRE01\",\n                        \"pjhl_description\": \"FIRE SUPPRESSION UNIT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 26,\n                \"pjh_contractnumber\": \"SDW83949\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117848,\n                \"pjs_name\": \"ACCOMODATION ROAD\",\n                \"pjh_deliverydate\": \"2023-04-24\",\n                \"syrinx_id\": 160161,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 46,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"VTANK\",\n                        \"pjhl_stockno\": \"DB52\",\n                        \"pjhl_description\": \"MAJOR 2400LGP BOWSER 10000LTS c/w ATOMISER, VACUUM PUMP\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 27,\n                \"pjh_contractnumber\": \"NPH4161\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117746,\n                \"pjs_name\": \"HEREFORD -- HR2 6FG\",\n                \"pjh_deliverydate\": \"2023-04-27\",\n                \"syrinx_id\": 160268,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 47,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK22\",\n                        \"pjhl_stockno\": \"RD22T22\",\n                        \"pjhl_description\": \"(XW5) EWR170E VOLVO WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 28,\n                \"pjh_contractnumber\": \"WSD40890\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117686,\n                \"pjs_name\": \"ROUNDHILL STW\",\n                \"pjh_deliverydate\": \"2023-04-27\",\n                \"syrinx_id\": 160397,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 48,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE17\",\n                        \"pjhl_stockno\": \"TH17M46\",\n                        \"pjhl_description\": \"17 MTR JCB 540-170 TELEHANDLER - AIR CON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 29,\n                \"pjh_contractnumber\": \"WPH40946\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12562,\n                \"pjc_name\": \"BOELS RENTAL LIMITED B213\",\n                \"pjs_id\": 117884,\n                \"pjs_name\": \"SMULDERS UK\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 160646,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 49,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T46\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336F EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 30,\n                \"pjh_contractnumber\": \"WSD40982\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13028,\n                \"pjc_name\": \"BAM NUTTALL LTD (BAA.2080) B235\",\n                \"pjs_id\": 117568,\n                \"pjs_name\": \"BAM COMPOUND LEEDS\",\n                \"pjh_deliverydate\": \"2023-05-04\",\n                \"syrinx_id\": 160776,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 50,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC1.5\",\n                        \"pjhl_stockno\": \"EX2T53\",\n                        \"pjhl_description\": \"1.5 TONNE CAT 301.5 EXCAVATOR c/w QUICK HITCH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 31,\n                \"pjh_contractnumber\": \"WSD40992\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13288,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0060) B265\",\n                \"pjs_id\": 117575,\n                \"pjs_name\": \"COUNTESS STREET\",\n                \"pjh_deliverydate\": \"2023-05-08\",\n                \"syrinx_id\": 160804,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 51,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH6\",\n                        \"pjhl_stockno\": \"TH6M06\",\n                        \"pjhl_description\": \"6 METER  JCB 525/60 Telehandler\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 32,\n                \"pjh_contractnumber\": \"WPH40968\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117556,\n                \"pjs_name\": \"BBV LONG ITCHINGTON ROAD\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 160835,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 52,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 53,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T224\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 33,\n                \"pjh_contractnumber\": \"SDW84136\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11901,\n                \"pjc_name\": \"COLAS LIMITED C058\",\n                \"pjs_id\": 117612,\n                \"pjs_name\": \"DOVER FASTRACK- TESCO\",\n                \"pjh_deliverydate\": \"2023-05-08\",\n                \"syrinx_id\": 160858,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 54,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T54\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 34,\n                \"pjh_contractnumber\": \"SDW84144\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10967,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S100\",\n                \"pjs_id\": 117895,\n                \"pjs_name\": \"A14 J47A - J49\",\n                \"pjh_deliverydate\": \"2023-05-05\",\n                \"syrinx_id\": 160881,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 55,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T53\",\n                        \"pjhl_description\": \"VOLVO SD135B ROLLER SELF PROPELLED 15T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 35,\n                \"pjh_contractnumber\": \"SDW84200\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13222,\n                \"pjc_name\": \"HESSELBERG HYDRO (UK) LTD H161\",\n                \"pjs_id\": 117675,\n                \"pjs_name\": \"CANVEY - SS8\",\n                \"pjh_deliverydate\": \"2023-05-11\",\n                \"syrinx_id\": 161120,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 56,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ28\",\n                        \"pjhl_description\": \"PC118MR-8 KOMATSU EXCAVATOR C/W BLADE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 36,\n                \"pjh_contractnumber\": \"WPH41046\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11280,\n                \"pjc_name\": \"COLLINS EARTHWORKS LTD C012\",\n                \"pjs_id\": 117616,\n                \"pjs_name\": \"CRACKLEY LANE\",\n                \"pjh_deliverydate\": \"2023-05-14\",\n                \"syrinx_id\": 161189,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 57,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUSTSUP\",\n                        \"pjhl_stockno\": \"DT30T70\",\n                        \"pjhl_description\": \"B30E BELL C/W 27000 LITRE DUST SUPPRESSION BOWSER\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 37,\n                \"pjh_contractnumber\": \"SDW84267\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10517,\n                \"pjc_name\": \"PJ CAREY PLANT HIRE (OVAL) LTD 010\",\n                \"pjs_id\": 117785,\n                \"pjs_name\": \"BRAINTREE - CO6\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 161379,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 58,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T84\",\n                        \"pjhl_description\": \"3 TONNE HITACHI ZX26U-6 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 59,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR802\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:38\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 38,\n                \"pjh_contractnumber\": \"PH82888\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12829,\n                \"pjc_name\": \"GETJAR LTD G155\",\n                \"pjs_id\": 117665,\n                \"pjs_name\": \"LONDON -EC2M\",\n                \"pjh_deliverydate\": \"2023-05-22\",\n                \"syrinx_id\": 161814,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 60,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T176\",\n                        \"pjhl_description\": \"5 TONNE CAT305 07A CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 39,\n                \"pjh_contractnumber\": \"WPH41187\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12756,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED (S K098\",\n                \"pjs_id\": 117716,\n                \"pjs_name\": \"ACCESS 10A\",\n                \"pjh_deliverydate\": \"2023-05-24\",\n                \"syrinx_id\": 161979,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 61,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T31\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 40,\n                \"pjh_contractnumber\": \"WPH41188\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12756,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED (S K098\",\n                \"pjs_id\": 117716,\n                \"pjs_name\": \"ACCESS 10A\",\n                \"pjh_deliverydate\": \"2023-05-23\",\n                \"syrinx_id\": 161981,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 62,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T26\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 41,\n                \"pjh_contractnumber\": \"PH82941\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117849,\n                \"pjs_name\": \"CHURCH CROOKHAM\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 162137,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 63,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T83\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 42,\n                \"pjh_contractnumber\": \"WSD41924\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117910,\n                \"pjs_name\": \"REAL ALLIANCE - YO61\",\n                \"pjh_deliverydate\": \"2023-06-04\",\n                \"syrinx_id\": 162440,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 64,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T173\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 65,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 43,\n                \"pjh_contractnumber\": \"NSD8102\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117746,\n                \"pjs_name\": \"HEREFORD -- HR2 6FG\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 162526,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 66,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ129\",\n                        \"pjhl_description\": \"(XW5) KOMATSU PC228USLC-11 ZERO EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 44,\n                \"pjh_contractnumber\": \"PH83084\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13275,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD (FAW V056\",\n                \"pjs_id\": 117846,\n                \"pjs_name\": \"SOUTHAMPTON - SO45 3NY\",\n                \"pjh_deliverydate\": \"2023-06-11\",\n                \"syrinx_id\": 163046,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 67,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK18\",\n                        \"pjhl_stockno\": \"RD18T38\",\n                        \"pjhl_description\": \"18 TONNE HITACHI ZX175W-7 2 PIECE BOOM RUBBER DUCK\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 45,\n                \"pjh_contractnumber\": \"PH83127\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13374,\n                \"pjc_name\": \"BALFOUR BEATTY GROUP LTD (M25) B273\",\n                \"pjs_id\": 117544,\n                \"pjs_name\": \"M25 STARBUCKS COMPOUND\",\n                \"pjh_deliverydate\": \"2023-06-14\",\n                \"syrinx_id\": 163219,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 68,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 69,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T211\",\n                        \"pjhl_description\": \"VOLVO A30G DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 46,\n                \"pjh_contractnumber\": \"WPH41414\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13332,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION (A B271\",\n                \"pjs_id\": 117536,\n                \"pjs_name\": \"WELLINGTON ST,\",\n                \"pjh_deliverydate\": \"2023-06-15\",\n                \"syrinx_id\": 163352,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 70,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T171\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D EARTH WORKS READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 71,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 72,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 47,\n                \"pjh_contractnumber\": \"WPH41425\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10822,\n                \"pjc_name\": \"KIER INTEGRATED SERVICES LT K060\",\n                \"pjs_id\": 117714,\n                \"pjs_name\": \"GATE 2 - LOWER SITE\",\n                \"pjh_deliverydate\": \"2023-06-15\",\n                \"syrinx_id\": 163421,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 73,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T21\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 48,\n                \"pjh_contractnumber\": \"NPH4247\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117508,\n                \"pjs_name\": \"CARDIFF - CF10 4NS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 163455,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 74,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T267\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 49,\n                \"pjh_contractnumber\": \"PH83201\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13374,\n                \"pjc_name\": \"BALFOUR BEATTY GROUP LTD (M25) B273\",\n                \"pjs_id\": 117544,\n                \"pjs_name\": \"M25 STARBUCKS COMPOUND\",\n                \"pjh_deliverydate\": \"2023-06-19\",\n                \"syrinx_id\": 163558,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 75,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 76,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N51\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 77,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKTEWD\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 50,\n                \"pjh_contractnumber\": \"WPH42087\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117557,\n                \"pjs_name\": \"GILSON ROAD ,\",\n                \"pjh_deliverydate\": \"2023-06-19\",\n                \"syrinx_id\": 163602,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 78,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 79,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T08\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 51,\n                \"pjh_contractnumber\": \"WSD42369\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13386,\n                \"pjc_name\": \"TCC PLANT LTD T165\",\n                \"pjs_id\": 117919,\n                \"pjs_name\": \"C/O TCC PLANT\",\n                \"pjh_deliverydate\": \"2023-06-27\",\n                \"syrinx_id\": 164045,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 80,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK25\",\n                        \"pjhl_stockno\": \"DT25T13\",\n                        \"pjhl_description\": \"25 TONNE DUMP TRUCK VOLVO A25G\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 52,\n                \"pjh_contractnumber\": \"NSD8200\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117509,\n                \"pjs_name\": \"CORNWALL - TR8 4NX (NORTH SIDE)\",\n                \"pjh_deliverydate\": \"2023-07-11\",\n                \"syrinx_id\": 164256,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 81,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T58\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 53,\n                \"pjh_contractnumber\": \"SDW85046\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12547,\n                \"pjc_name\": \"BAUER KELLER JV B210\",\n                \"pjs_id\": 117599,\n                \"pjs_name\": \"052L11PG- AYLESBURY\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 164295,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 82,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH9\",\n                        \"pjhl_stockno\": \"TH9M39\",\n                        \"pjhl_description\": \"9 MTR JCB 535/95 TELEHANDLER C/W HYDRAULIC TOW HITCH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 54,\n                \"pjh_contractnumber\": \"WSD42465\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13347,\n                \"pjc_name\": \"COLAS LIMITED -COL GBR0005 C316\",\n                \"pjs_id\": 117611,\n                \"pjs_name\": \"OFF MOOR LANE\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 164353,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 83,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH9\",\n                        \"pjhl_stockno\": \"TH9M14\",\n                        \"pjhl_description\": \"9 MTR JCB 535/95 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 55,\n                \"pjh_contractnumber\": \"WPH42458\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12784,\n                \"pjc_name\": \"BAM NUTTALL LTD 6060/6301 B128\",\n                \"pjs_id\": 117588,\n                \"pjs_name\": \"BETHELLS BRIDGE\",\n                \"pjh_deliverydate\": \"2023-07-03\",\n                \"syrinx_id\": 164491,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 84,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T54\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT312E EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:51\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 56,\n                \"pjh_contractnumber\": \"WSD42697\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117582,\n                \"pjs_name\": \"THORNHILL POWER STATION\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 165176,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 85,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M90\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 540/140 HI -VIS Low Emission  - AIR CON.\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 86,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"FMHOOK\",\n                        \"pjhl_stockno\": \"LH117\",\n                        \"pjhl_description\": \"LIFTING HOOK 5 TONNE TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 87,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 57,\n                \"pjh_contractnumber\": \"PH83508\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11698,\n                \"pjc_name\": \"FLO JV F090\",\n                \"pjs_id\": 117656,\n                \"pjs_name\": \"ALBERT EMBANKMENT - SE1\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 165253,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 88,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC6ZT\",\n                        \"pjhl_stockno\": \"EX6T05\",\n                        \"pjhl_description\": \"6 TONNE HITACHI ZX65USB-5A EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 58,\n                \"pjh_contractnumber\": \"SDW85310\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117850,\n                \"pjs_name\": \"UPPER FROYLE\",\n                \"pjh_deliverydate\": \"2023-07-16\",\n                \"syrinx_id\": 165301,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 89,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"BKT86\",\n                        \"pjhl_description\": \"13T NFD BUCKET TEETH 130MM WIDE 1300 HIGH 65MM PINS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 59,\n                \"pjh_contractnumber\": \"SDW85311\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117850,\n                \"pjs_name\": \"UPPER FROYLE\",\n                \"pjh_deliverydate\": \"2023-07-16\",\n                \"syrinx_id\": 165302,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 90,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"BKT91\",\n                        \"pjhl_description\": \"NFD BUCKET TEETH 130MM WIDE 1300 HIGH 65MM PINS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 60,\n                \"pjh_contractnumber\": \"SDW85315\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117929,\n                \"pjs_name\": \"SHOTTISHAM\",\n                \"pjh_deliverydate\": \"2023-07-13\",\n                \"syrinx_id\": 165314,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 91,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6T30\",\n                        \"pjhl_description\": \"Dozer D6 (Next Gen) 3D INTEGRATED GPS LGP VPAT CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 92,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 61,\n                \"pjh_contractnumber\": \"WSD42737\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11968,\n                \"pjc_name\": \"HARRY BARKER ( IRELETH AND H035\",\n                \"pjs_id\": 117893,\n                \"pjs_name\": \"MCLAUGHLIN AND HARVEY KINGS GATES\",\n                \"pjh_deliverydate\": \"2023-07-16\",\n                \"syrinx_id\": 165367,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 93,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM9\",\n                        \"pjhl_stockno\": \"DU9T35\",\n                        \"pjhl_description\": \"CABBED DW90 WACKER NEUSON STRAIGHT DUMPER 9T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 62,\n                \"pjh_contractnumber\": \"ASD3881\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13419,\n                \"pjc_name\": \"ARDERSIER PORT (SCOTLAND LTD) A218\",\n                \"pjs_id\": 117524,\n                \"pjs_name\": \"ARDERSIER PORT\",\n                \"pjh_deliverydate\": \"2023-07-23\",\n                \"syrinx_id\": 165477,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 94,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M51\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 540/140 HI -VIS Low Emission\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 63,\n                \"pjh_contractnumber\": \"PH83548\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117506,\n                \"pjs_name\": \"KENTISH TOWN - NW5\",\n                \"pjh_deliverydate\": \"2023-07-21\",\n                \"syrinx_id\": 165492,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 95,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T294\",\n                        \"pjhl_description\": \"EZ80 VDS WACKER NEUSON ZERO TAIL EXCAVATOR(BANDED TRACKS)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 64,\n                \"pjh_contractnumber\": \"SDW85413\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117926,\n                \"pjs_name\": \"COVENTRY- CV8\",\n                \"pjh_deliverydate\": \"2023-07-19\",\n                \"syrinx_id\": 165643,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 96,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6T47\",\n                        \"pjhl_description\": \"D6 LGP(30) VPAT -20 FOLDING BLADE 3D INTEGRATED GPS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 97,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 65,\n                \"pjh_contractnumber\": \"SDW85458\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117933,\n                \"pjs_name\": \"THORNHAUGH LANDFILL SITE\",\n                \"pjh_deliverydate\": \"2023-07-24\",\n                \"syrinx_id\": 165857,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 98,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6T35\",\n                        \"pjhl_description\": \"D6 LGP(30) VPAT -20 FOLDING BLADE 3D INTEGRATED GPS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 99,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 66,\n                \"pjh_contractnumber\": \"WPH42659\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11745,\n                \"pjc_name\": \"APPROVED POWER SERVICES LTD A031\",\n                \"pjs_id\": 117523,\n                \"pjs_name\": \"OSBALDWICK SUBSTATION\",\n                \"pjh_deliverydate\": \"2023-07-25\",\n                \"syrinx_id\": 165927,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 100,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T167\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D EARTH WORKS READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 101,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 102,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 67,\n                \"pjh_contractnumber\": \"WPH42729\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117558,\n                \"pjs_name\": \"CURZON ST NO3 VIADUCT\",\n                \"pjh_deliverydate\": \"2023-07-30\",\n                \"syrinx_id\": 166218,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 103,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 104,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T300\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320GC EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 68,\n                \"pjh_contractnumber\": \"SDW85569\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11769,\n                \"pjc_name\": \"O'CONNOR UTILITIES LIMITED O060\",\n                \"pjs_id\": 117772,\n                \"pjs_name\": \"OXFORDSHIRE- OX26\",\n                \"pjh_deliverydate\": \"2023-08-01\",\n                \"syrinx_id\": 166287,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 105,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ75\",\n                        \"pjhl_description\": \"13 TONNE KOMATSU PC138 US-11 ZERO TAIL SWING EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 106,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE84\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 13T/20T 2000KG\\r\\nCONQUIP 13/21 TONNE EXCAVATOR FORKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 69,\n                \"pjh_contractnumber\": \"PH83699\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13275,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD (FAW V056\",\n                \"pjs_id\": 117846,\n                \"pjs_name\": \"SOUTHAMPTON - SO45 3NY\",\n                \"pjh_deliverydate\": \"2023-08-01\",\n                \"syrinx_id\": 166326,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 107,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T71\",\n                        \"pjhl_description\": \"5 TONNE U55-4 KUBOTA EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 70,\n                \"pjh_contractnumber\": \"WSD42991\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117558,\n                \"pjs_name\": \"CURZON ST NO3 VIADUCT\",\n                \"pjh_deliverydate\": \"2023-08-01\",\n                \"syrinx_id\": 166364,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 108,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR24\",\n                        \"pjhl_stockno\": \"BR990\",\n                        \"pjhl_description\": \"EPIROC MB1200E BREAKER  20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 71,\n                \"pjh_contractnumber\": \"WSD43002\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11126,\n                \"pjc_name\": \"COLEMAN & COMPANY LIMITED C203\",\n                \"pjs_id\": 117614,\n                \"pjs_name\": \"UNIVERSTY OF BIRMINGHAM\",\n                \"pjh_deliverydate\": \"2023-08-01\",\n                \"syrinx_id\": 166409,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 109,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T37\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336FL EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 110,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB118\",\n                        \"pjhl_description\": \"EPIROC MG2700 SELECTOR GRAB 40T/50T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 111,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HSHEARS\",\n                        \"pjhl_stockno\": \"SHEAR04\",\n                        \"pjhl_description\": \"VTN EUROPE 30/40 TON CI300 SHEARS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 72,\n                \"pjh_contractnumber\": \"SDW85620\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117928,\n                \"pjs_name\": \"LAND EAST OF ASHINGDON ROAD\",\n                \"pjh_deliverydate\": \"2023-08-02\",\n                \"syrinx_id\": 166534,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 112,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6T98\",\n                        \"pjhl_description\": \"D6LGP 30VS1  VPAT -20 FOLDING BLADE 3D INTEGRATED GPS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 113,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 73,\n                \"pjh_contractnumber\": \"WPH43040\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12613,\n                \"pjc_name\": \"VAN ELLE LTD V044\",\n                \"pjs_id\": 117840,\n                \"pjs_name\": \"GREAT CHARLES STREET\",\n                \"pjh_deliverydate\": \"2023-08-21\",\n                \"syrinx_id\": 166556,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 114,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T205\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 74,\n                \"pjh_contractnumber\": \"WSD43069\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117584,\n                \"pjs_name\": \"NETWORK RAIL DEPOT\",\n                \"pjh_deliverydate\": \"2023-08-06\",\n                \"syrinx_id\": 166610,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 115,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ243\",\n                        \"pjhl_description\": \"(XW5) CAT315GC EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 116,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 117,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB61\",\n                        \"pjhl_description\": \"OSA GR7 SELECTOR GRAB 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 75,\n                \"pjh_contractnumber\": \"WSD43070\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117584,\n                \"pjs_name\": \"NETWORK RAIL DEPOT\",\n                \"pjh_deliverydate\": \"2023-08-06\",\n                \"syrinx_id\": 166611,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 118,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ237\",\n                        \"pjhl_description\": \"(XW5) CAT315GC EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 119,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 120,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB23\",\n                        \"pjhl_description\": \"VTNMD140 SELECTOR GRAB 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 76,\n                \"pjh_contractnumber\": \"WSD43085\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117906,\n                \"pjs_name\": \"DINORWIG PENTIR CABLE REPLACEMENT\",\n                \"pjh_deliverydate\": \"2023-08-06\",\n                \"syrinx_id\": 166670,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 121,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RWHEEL\",\n                        \"pjhl_stockno\": \"XRWHEEL\",\n                        \"pjhl_description\": \"Rock Wheel\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 77,\n                \"pjh_contractnumber\": \"WSD43093\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117582,\n                \"pjs_name\": \"THORNHILL POWER STATION\",\n                \"pjh_deliverydate\": \"2023-08-06\",\n                \"syrinx_id\": 166705,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 122,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"XDTRUCK12\",\n                        \"pjhl_description\": \"912 HYDREMA BAM MACHINE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 78,\n                \"pjh_contractnumber\": \"PH83809\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117631,\n                \"pjs_name\": \"ETTON COMPOUND- PE6\",\n                \"pjh_deliverydate\": \"2023-08-09\",\n                \"syrinx_id\": 166947,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 123,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK134\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR C/w FRONT LINKAGE & FRONT LOADER\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 79,\n                \"pjh_contractnumber\": \"WPH43116\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117865,\n                \"pjs_name\": \"WOODCOCK FOLD\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 167065,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 124,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24LR\",\n                        \"pjhl_stockno\": \"EX25TLR07\",\n                        \"pjhl_description\": \"KOMATSU PC210LC-11 LONG REACH EXCAVATOR 15 METER REACH\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 125,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL - TO BE ADVISED AT TIME OF HIRE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 126,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB22\",\n                        \"pjhl_description\": \"RUBBER TRACK 22 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 80,\n                \"pjh_contractnumber\": \"PH83846\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13374,\n                \"pjc_name\": \"BALFOUR BEATTY GROUP LTD (M25) B273\",\n                \"pjs_id\": 117543,\n                \"pjs_name\": \"WISLEY COMMON\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 167107,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 127,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 128,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T319\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320-07 EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 129,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 130,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:47:52\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 81,\n                \"pjh_contractnumber\": \"PH83847\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13374,\n                \"pjc_name\": \"BALFOUR BEATTY GROUP LTD (M25) B273\",\n                \"pjs_id\": 117543,\n                \"pjs_name\": \"WISLEY COMMON\",\n                \"pjh_deliverydate\": \"2023-08-13\",\n                \"syrinx_id\": 167113,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 131,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 132,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T198\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 82,\n                \"pjh_contractnumber\": \"SDW85801\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117935,\n                \"pjs_name\": \"MCCAINS FACTORY\",\n                \"pjh_deliverydate\": \"2023-08-15\",\n                \"syrinx_id\": 167175,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 133,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N41\",\n                        \"pjhl_description\": \"Dozer  D61PXI-24 KOMATSU INTERGRATED 3D VPAT FOLDING BLADE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 134,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSBICD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS BASE INSTALL KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 83,\n                \"pjh_contractnumber\": \"SDW85800\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117831,\n                \"pjs_name\": \"BURY ST EDMUNDS - IP28 6SE\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 167176,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 135,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N39\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 136,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 84,\n                \"pjh_contractnumber\": \"WSD43561\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117865,\n                \"pjs_name\": \"WOODCOCK FOLD\",\n                \"pjh_deliverydate\": \"2023-08-14\",\n                \"syrinx_id\": 167197,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 137,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M58\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 540/140 HI -VIS Low Emission C/W Sideshift\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 85,\n                \"pjh_contractnumber\": \"WSD43569\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12844,\n                \"pjc_name\": \"JOHN SISK & SONS (HOLDINGS) LI S115\",\n                \"pjs_id\": 117702,\n                \"pjs_name\": \"YORK CENTRAL - YO26 4ZH\",\n                \"pjh_deliverydate\": \"2023-08-15\",\n                \"syrinx_id\": 167239,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 138,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO4T03\",\n                        \"pjhl_description\": \"BOMAG BW135 AD-5 ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 86,\n                \"pjh_contractnumber\": \"PH83892\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117627,\n                \"pjs_name\": \"NEWBOROUGH - PE6\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 167343,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 139,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40TC\",\n                        \"pjhl_stockno\": \"EX40T98\",\n                        \"pjhl_description\": \"HB365LC-3 40T Komatsu Excavator(Hybrid)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 87,\n                \"pjh_contractnumber\": \"SDW85888\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13422,\n                \"pjc_name\": \"VOLKERFITZPATRICK LTD V060\",\n                \"pjs_id\": 117858,\n                \"pjs_name\": \"ALDERSHOT - GU12\",\n                \"pjh_deliverydate\": \"2023-08-17\",\n                \"syrinx_id\": 167453,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 140,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T122\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 88,\n                \"pjh_contractnumber\": \"WSD43628\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12917,\n                \"pjc_name\": \"HEYROD CONSTRUCTION LTD H071\",\n                \"pjs_id\": 117676,\n                \"pjs_name\": \"COLLECTING\",\n                \"pjh_deliverydate\": \"2023-08-20\",\n                \"syrinx_id\": 167521,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 141,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T181\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 89,\n                \"pjh_contractnumber\": \"WSD43634\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11642,\n                \"pjc_name\": \"HSS HIRE SERVICE GROUP LTD H140\",\n                \"pjs_id\": 117682,\n                \"pjs_name\": \"AVOVE LIMITED-\",\n                \"pjh_deliverydate\": \"2023-08-20\",\n                \"syrinx_id\": 167537,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 142,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T129\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 90,\n                \"pjh_contractnumber\": \"NSD8367\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117508,\n                \"pjs_name\": \"CARDIFF - CF10 4NS\",\n                \"pjh_deliverydate\": \"2023-08-20\",\n                \"syrinx_id\": 167561,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 143,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE17\",\n                        \"pjhl_stockno\": \"TH17M24\",\n                        \"pjhl_description\": \"17 MTR JCB 540-170 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 144,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"FMHOOK\",\n                        \"pjhl_stockno\": \"LH114\",\n                        \"pjhl_description\": \"LIFTING HOOK 4 TONNE TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 145,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"FORKEX\",\n                        \"pjhl_stockno\": \"FE156\",\n                        \"pjhl_description\": \"125X50X2400MM FORK EXTENSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 91,\n                \"pjh_contractnumber\": \"WPH43503\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13028,\n                \"pjc_name\": \"BAM NUTTALL LTD (BAA.2080) B235\",\n                \"pjs_id\": 117568,\n                \"pjs_name\": \"BAM COMPOUND LEEDS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 167612,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 146,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T211\",\n                        \"pjhl_description\": \"(XW5) 9T LOW EMMISSION EXCAVATOR CAT308-06A\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 147,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 92,\n                \"pjh_contractnumber\": \"WSD43662\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13028,\n                \"pjc_name\": \"BAM NUTTALL LTD (BAA.2080) B235\",\n                \"pjs_id\": 117877,\n                \"pjs_name\": \"KIRKSTALL ABBEY,\",\n                \"pjh_deliverydate\": \"2023-08-21\",\n                \"syrinx_id\": 167667,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 148,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"AUGER\",\n                        \"pjhl_stockno\": \"A036\",\n                        \"pjhl_description\": \"AUGER TORGUE 25,000 MAX (20T)   DRIVE UNIT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 149,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"Augacc\",\n                        \"pjhl_stockno\": \"XAUGACC\",\n                        \"pjhl_description\": \"4.5M EXTENSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 150,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"AUGACC\",\n                        \"pjhl_stockno\": \"A091\",\n                        \"pjhl_description\": \"Augar Flight 600mmx75mmSq\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 151,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"AUGER\",\n                        \"pjhl_stockno\": \"XAUGER\",\n                        \"pjhl_description\": \"Auger 450MM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 93,\n                \"pjh_contractnumber\": \"WSD43665\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12288,\n                \"pjc_name\": \"COSTAIN LIMITED (M6) C109\",\n                \"pjs_id\": 117886,\n                \"pjs_name\": \"M6 21A-26 ,\",\n                \"pjh_deliverydate\": \"2023-08-21\",\n                \"syrinx_id\": 167692,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 152,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR47\",\n                        \"pjhl_description\": \"3500KG GH1054 TRAILER C/W RAMP\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 94,\n                \"pjh_contractnumber\": \"WSD43673\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117550,\n                \"pjs_name\": \"A38 OVERBRIDGE\",\n                \"pjh_deliverydate\": \"2023-08-22\",\n                \"syrinx_id\": 167719,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 153,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T226\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 154,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKACC\",\n                        \"pjhl_stockno\": \"BKT41\",\n                        \"pjhl_description\": \"20T KINSHOFER TR25-DF10 TILT ROTATOR Q/HITCH 25 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 155,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"BR24\",\n                        \"pjhl_stockno\": \"BR373\",\n                        \"pjhl_description\": \"MB1200E ATLAS COPCO BREAKER 20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 156,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 95,\n                \"pjh_contractnumber\": \"WPH43524\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13075,\n                \"pjc_name\": \"JOHN SISK & SONS LIMITED S101\",\n                \"pjs_id\": 117705,\n                \"pjs_name\": \"VITTORIA DOCK\",\n                \"pjh_deliverydate\": \"2023-08-24\",\n                \"syrinx_id\": 167846,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 157,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40TLR\",\n                        \"pjhl_stockno\": \"EX40TLR01\",\n                        \"pjhl_description\": \"KOMATSU PC360LC-11 40 TONNE 22M LONG REACH EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 158,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKLE\",\n                        \"pjhl_description\": \"LEICA CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 96,\n                \"pjh_contractnumber\": \"SDW85995\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13090,\n                \"pjc_name\": \"M X CONSTRUCTION LIMITED M272\",\n                \"pjs_id\": 117736,\n                \"pjs_name\": \"COLINDALE GARDENS BLOCK W\",\n                \"pjh_deliverydate\": \"2023-08-23\",\n                \"syrinx_id\": 167861,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 159,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ71\",\n                        \"pjhl_description\": \"14 TONNE CASE CX145D SR EXCAVATOR ZERO TAIL C/W BLADE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 160,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKSHA\",\n                        \"pjhl_stockno\": \"BSHA22\",\n                        \"pjhl_description\": \"SHAKER 13.0 TONNE - strickland\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 97,\n                \"pjh_contractnumber\": \"WPH43536\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11466,\n                \"pjc_name\": \"SKANSKA CIVIL ENGINEERING S011\",\n                \"pjs_id\": 117805,\n                \"pjs_name\": \"M42 CLOCK LANE\",\n                \"pjh_deliverydate\": \"2023-08-24\",\n                \"syrinx_id\": 167933,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 161,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24LR\",\n                        \"pjhl_stockno\": \"EX25TLR10\",\n                        \"pjhl_description\": \"JCB 220X LONG REACH EXCAVATOR 15 METER REACH TRIMBLE 3D EARTHWORKS READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 98,\n                \"pjh_contractnumber\": \"PH84054\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11477,\n                \"pjc_name\": \"ENGLOBE REGENERATION UK LTD C022\",\n                \"pjs_id\": 117644,\n                \"pjs_name\": \"DAGENHAM- RM8\",\n                \"pjh_deliverydate\": \"2023-08-28\",\n                \"syrinx_id\": 168033,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 162,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T22\",\n                        \"pjhl_description\": \"30 TONNE CAT330-07 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 99,\n                \"pjh_contractnumber\": \"PH84056\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11477,\n                \"pjc_name\": \"ENGLOBE REGENERATION UK LTD C022\",\n                \"pjs_id\": 117644,\n                \"pjs_name\": \"DAGENHAM- RM8\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168036,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 163,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T25\",\n                        \"pjhl_description\": \"30 TONNE CAT330-07 EXCAVATOR 2D\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 100,\n                \"pjh_contractnumber\": \"PH84058\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11477,\n                \"pjc_name\": \"ENGLOBE REGENERATION UK LTD C022\",\n                \"pjs_id\": 117644,\n                \"pjs_name\": \"DAGENHAM- RM8\",\n                \"pjh_deliverydate\": \"2023-08-28\",\n                \"syrinx_id\": 168041,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 164,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T77\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336-07 EXCAVATOR 3D EARTHWORKS INSTALL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 101,\n                \"pjh_contractnumber\": \"PH84060\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11477,\n                \"pjc_name\": \"ENGLOBE REGENERATION UK LTD C022\",\n                \"pjs_id\": 117644,\n                \"pjs_name\": \"DAGENHAM- RM8\",\n                \"pjh_deliverydate\": \"2023-08-28\",\n                \"syrinx_id\": 168043,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 165,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T155\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 102,\n                \"pjh_contractnumber\": \"PH84061\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11477,\n                \"pjc_name\": \"ENGLOBE REGENERATION UK LTD C022\",\n                \"pjs_id\": 117644,\n                \"pjs_name\": \"DAGENHAM- RM8\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168045,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 166,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK143\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 103,\n                \"pjh_contractnumber\": \"WPH43561\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117579,\n                \"pjs_name\": \"HILL HOUSE,\",\n                \"pjh_deliverydate\": \"2023-08-28\",\n                \"syrinx_id\": 168088,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 167,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24C\",\n                        \"pjhl_stockno\": \"EX25T214\",\n                        \"pjhl_description\": \"(XW5) HB215LC-3 KOMATSU HYBRID\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 104,\n                \"pjh_contractnumber\": \"NPH4403\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117746,\n                \"pjs_name\": \"HEREFORD -- HR2 6FG\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168103,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 168,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T301\",\n                        \"pjhl_description\": \"TB280FR TAKEUCHI ZERO TAIL EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 105,\n                \"pjh_contractnumber\": \"WSD43774\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13028,\n                \"pjc_name\": \"BAM NUTTALL LTD (BAA.2080) B235\",\n                \"pjs_id\": 117568,\n                \"pjs_name\": \"BAM COMPOUND LEEDS\",\n                \"pjh_deliverydate\": \"2023-08-28\",\n                \"syrinx_id\": 168121,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 169,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR690\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 106,\n                \"pjh_contractnumber\": \"WSD43775\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13389,\n                \"pjc_name\": \"BAM NUTTALL LTD (BNE.0050) B275\",\n                \"pjs_id\": 117574,\n                \"pjs_name\": \"ANGLERS ARMS PUB\",\n                \"pjh_deliverydate\": \"2023-08-29\",\n                \"syrinx_id\": 168127,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 170,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR667\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO BREAKER 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 107,\n                \"pjh_contractnumber\": \"WSD43782\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117906,\n                \"pjs_name\": \"DINORWIG PENTIR CABLE REPLACEMENT\",\n                \"pjh_deliverydate\": \"2023-08-29\",\n                \"syrinx_id\": 168148,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 171,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKSHA\",\n                        \"pjhl_stockno\": \"BSHA14\",\n                        \"pjhl_description\": \"SHAKER 13.0 TONNE - strickland\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 108,\n                \"pjh_contractnumber\": \"WSD43791\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117763,\n                \"pjs_name\": \"HINDLEY STATION CAR PARK\",\n                \"pjh_deliverydate\": \"2023-08-29\",\n                \"syrinx_id\": 168191,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 172,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T11\",\n                        \"pjhl_description\": \"CC1200 ROLLER ATLAS COPCO\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 109,\n                \"pjh_contractnumber\": \"WSD43792\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13340,\n                \"pjc_name\": \"MIDLAND ROCK (LEICESTER) LTD M288\",\n                \"pjs_id\": 117743,\n                \"pjs_name\": \"KILBY BRIDGE FARM\",\n                \"pjh_deliverydate\": \"2023-08-29\",\n                \"syrinx_id\": 168197,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 173,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T81\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 110,\n                \"pjh_contractnumber\": \"PH84092\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11901,\n                \"pjc_name\": \"COLAS LIMITED C058\",\n                \"pjs_id\": 117612,\n                \"pjs_name\": \"DOVER FASTRACK- TESCO\",\n                \"pjh_deliverydate\": \"2023-08-30\",\n                \"syrinx_id\": 168199,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 174,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T242\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 111,\n                \"pjh_contractnumber\": \"SDW86106\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13422,\n                \"pjc_name\": \"VOLKERFITZPATRICK LTD V060\",\n                \"pjs_id\": 117858,\n                \"pjs_name\": \"ALDERSHOT - GU12\",\n                \"pjh_deliverydate\": \"2023-08-30\",\n                \"syrinx_id\": 168220,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 175,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T59\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 112,\n                \"pjh_contractnumber\": \"WSD43801\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10936,\n                \"pjc_name\": \"EUROVIA INFRASTRUCTURE SER R073\",\n                \"pjs_id\": 117647,\n                \"pjs_name\": \"ADJACENT TO LINKCS PLANT HIRE\",\n                \"pjh_deliverydate\": \"2023-09-03\",\n                \"syrinx_id\": 168230,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 176,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15LR\",\n                        \"pjhl_stockno\": \"XEXC15LR\",\n                        \"pjhl_description\": \"15 Tonne Excavator Long Reach\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 113,\n                \"pjh_contractnumber\": \"SDW86110\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10517,\n                \"pjc_name\": \"PJ CAREY PLANT HIRE (OVAL) LTD 010\",\n                \"pjs_id\": 117785,\n                \"pjs_name\": \"BRAINTREE - CO6\",\n                \"pjh_deliverydate\": \"2023-08-30\",\n                \"syrinx_id\": 168246,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 177,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T149\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 178,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 114,\n                \"pjh_contractnumber\": \"WPH43582\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117559,\n                \"pjs_name\": \"WELSH RD\",\n                \"pjh_deliverydate\": \"2023-08-31\",\n                \"syrinx_id\": 168286,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 179,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 180,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T71\",\n                        \"pjhl_description\": \"40 TONNE CAT336HSR 2 D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 181,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"RCI\",\n                        \"pjhl_stockno\": \"RCI1\",\n                        \"pjhl_description\": \"CAT RCI\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 182,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"RWHEEL\",\n                        \"pjhl_stockno\": \"XRWHEEL\",\n                        \"pjhl_description\": \"40T ROCK WHEEL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 115,\n                \"pjh_contractnumber\": \"WSD43820\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117686,\n                \"pjs_name\": \"ROUNDHILL STW\",\n                \"pjh_deliverydate\": \"2023-08-31\",\n                \"syrinx_id\": 168295,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 183,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM3S\",\n                        \"pjhl_stockno\": \"DU3TS33\",\n                        \"pjhl_description\": \"3 TONNE  DUMPER POWERSWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 116,\n                \"pjh_contractnumber\": \"WSD43821\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117686,\n                \"pjs_name\": \"ROUNDHILL STW\",\n                \"pjh_deliverydate\": \"2023-08-31\",\n                \"syrinx_id\": 168297,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 184,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T69\",\n                        \"pjhl_description\": \"3 TONNE E26 BOBCAT EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 117,\n                \"pjh_contractnumber\": \"WSD43825\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117765,\n                \"pjs_name\": \"BROOMHALL LANE\",\n                \"pjh_deliverydate\": \"2023-08-31\",\n                \"syrinx_id\": 168317,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 185,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK25\",\n                        \"pjhl_stockno\": \"DT25T34\",\n                        \"pjhl_description\": \"25 TONNE DUMP TRUCK CAT 725-04\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 118,\n                \"pjh_contractnumber\": \"SDW86138\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117934,\n                \"pjs_name\": \"BROOMFIELD PIT\",\n                \"pjh_deliverydate\": \"2023-09-01\",\n                \"syrinx_id\": 168360,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 186,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK18\",\n                        \"pjhl_stockno\": \"RD18T18\",\n                        \"pjhl_description\": \"17 TONNE HITACHI ZX170W-6 RUBBER DUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 119,\n                \"pjh_contractnumber\": \"WSD43902\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13354,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S122\",\n                \"pjs_id\": 117701,\n                \"pjs_name\": \"KEX GILL\",\n                \"pjh_deliverydate\": \"2023-09-03\",\n                \"syrinx_id\": 168432,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 187,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T27\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 120,\n                \"pjh_contractnumber\": \"WSD43904\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117906,\n                \"pjs_name\": \"DINORWIG PENTIR CABLE REPLACEMENT\",\n                \"pjh_deliverydate\": \"2023-09-03\",\n                \"syrinx_id\": 168445,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 188,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T267\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 189,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 121,\n                \"pjh_contractnumber\": \"NPH4420\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117748,\n                \"pjs_name\": \"CARDIFF - CF14 2FP\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 168448,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 190,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T253\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 122,\n                \"pjh_contractnumber\": \"SDW86151\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12429,\n                \"pjc_name\": \"LARC CONSTRUCTION LTD L106\",\n                \"pjs_id\": 117726,\n                \"pjs_name\": \"ROYAL MILITARY CAMPUS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168462,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 191,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T124\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 192,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE219\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 8T/13T/20T\\r\\nCONQUIP 13/21 TONNE EXCAVATOR FORKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 193,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"BR8\",\n                        \"pjhl_stockno\": \"BR858\",\n                        \"pjhl_description\": \"SB302 ATLAS COPCO BREAKER 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 194,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"BUCK\",\n                        \"pjhl_stockno\": \"B18\",\n                        \"pjhl_description\": \"18\\\" 8T BLADED BKT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 123,\n                \"pjh_contractnumber\": \"SDW86150\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12429,\n                \"pjc_name\": \"LARC CONSTRUCTION LTD L106\",\n                \"pjs_id\": 117726,\n                \"pjs_name\": \"ROYAL MILITARY CAMPUS\",\n                \"pjh_deliverydate\": \"2023-09-03\",\n                \"syrinx_id\": 168463,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 195,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM9\",\n                        \"pjhl_stockno\": \"DU9T27\",\n                        \"pjhl_description\": \"DW90 WACKER NEUSON STRAIGHT DUMPER 9 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 124,\n                \"pjh_contractnumber\": \"SDW86177\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117923,\n                \"pjs_name\": \"BARNABEES BOOKS\",\n                \"pjh_deliverydate\": \"2023-09-01\",\n                \"syrinx_id\": 168477,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 196,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6T92\",\n                        \"pjhl_description\": \"D6LGP30V  VPAT -20 FOLDING BLADE 3D INTEGRATED GPS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 197,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 125,\n                \"pjh_contractnumber\": \"SDW86178\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117924,\n                \"pjs_name\": \"TATTINGSTONE\",\n                \"pjh_deliverydate\": \"2023-09-04\",\n                \"syrinx_id\": 168478,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 198,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N28\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 199,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 126,\n                \"pjh_contractnumber\": \"WPH43614\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117580,\n                \"pjs_name\": \"RAVENSTHORPE ROAD/ CALDER ROAD\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168502,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 200,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"XDTRUCK12\",\n                        \"pjhl_description\": \"12 Tonne Dump Truck - Hydrema\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 127,\n                \"pjh_contractnumber\": \"SDW86189\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13390,\n                \"pjc_name\": \"VIPEN CONSTRUCTION LTD V059\",\n                \"pjs_id\": 117851,\n                \"pjs_name\": \"SHINFIELD STUDIOS - RG2\",\n                \"pjh_deliverydate\": \"2023-09-07\",\n                \"syrinx_id\": 168515,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 201,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T140\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 128,\n                \"pjh_contractnumber\": \"WSD43919\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117528,\n                \"pjs_name\": \"TOFT LODGE\",\n                \"pjh_deliverydate\": \"2023-09-05\",\n                \"syrinx_id\": 168528,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 202,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40TC\",\n                        \"pjhl_stockno\": \"EX40T119\",\n                        \"pjhl_description\": \"HB365LC-3 40T Komatsu Excavator(Hybrid)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 203,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 204,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 205,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 206,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 129,\n                \"pjh_contractnumber\": \"WSD43921\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117528,\n                \"pjs_name\": \"TOFT LODGE\",\n                \"pjh_deliverydate\": \"2023-09-05\",\n                \"syrinx_id\": 168530,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 207,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T316\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320-07 EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 208,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 209,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 210,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 211,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 212,\n                        \"pjhl_seq\": 6,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB22\",\n                        \"pjhl_description\": \"RUBBER TRACK 22 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 213,\n                        \"pjhl_seq\": 7,\n                        \"pjhl_categorycode\": \"GPSBASE\",\n                        \"pjhl_stockno\": \"GPSB010\",\n                        \"pjhl_description\": \"TRIMBLE SPS855 BASE STATION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 214,\n                        \"pjhl_seq\": 8,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 130,\n                \"pjh_contractnumber\": \"WSD43936\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11673,\n                \"pjc_name\": \"KILKERN LTD K011\",\n                \"pjs_id\": 117898,\n                \"pjs_name\": \"UNIT 2A (MCHL SITE)\",\n                \"pjh_deliverydate\": \"2023-09-05\",\n                \"syrinx_id\": 168597,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 215,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS57\",\n                        \"pjhl_description\": \"TA6000SH MECALAC 6 TONNE SWIVELDUMPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 131,\n                \"pjh_contractnumber\": \"NPH4425\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117510,\n                \"pjs_name\": \"CORNWALL - TR8 4NY\",\n                \"pjh_deliverydate\": \"2023-09-07\",\n                \"syrinx_id\": 168611,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 216,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T176\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 132,\n                \"pjh_contractnumber\": \"WSD43950\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 117633,\n                \"pjs_name\": \"SPERNAL STW\",\n                \"pjh_deliverydate\": \"2023-09-06\",\n                \"syrinx_id\": 168658,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 217,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T19\",\n                        \"pjhl_description\": \"CAT CS64B ROLLER SELF PROPELLED 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 133,\n                \"pjh_contractnumber\": \"WPH43636\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 117633,\n                \"pjs_name\": \"SPERNAL STW\",\n                \"pjh_deliverydate\": \"2023-09-06\",\n                \"syrinx_id\": 168659,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 218,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T27\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 134,\n                \"pjh_contractnumber\": \"SDW86220\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117932,\n                \"pjs_name\": \"TILBURY- RM18\",\n                \"pjh_deliverydate\": \"2023-09-06\",\n                \"syrinx_id\": 168661,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 219,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N32\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 220,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 135,\n                \"pjh_contractnumber\": \"SDW86225\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117530,\n                \"pjs_name\": \"ROXTON- MK44\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168667,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 221,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ115\",\n                        \"pjhl_description\": \"25 TONNE CAT325-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 222,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 223,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 224,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 225,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 226,\n                        \"pjhl_seq\": 6,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 136,\n                \"pjh_contractnumber\": \"WPH43639\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117687,\n                \"pjs_name\": \"MOSSWOOD TREATMENT WORKS\",\n                \"pjh_deliverydate\": \"2023-09-07\",\n                \"syrinx_id\": 168677,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 227,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 228,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N35\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 229,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 137,\n                \"pjh_contractnumber\": \"WPH43641\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 117710,\n                \"pjs_name\": \"RIVER BLYTHE BYPASS CULVERT\",\n                \"pjh_deliverydate\": \"2023-09-06\",\n                \"syrinx_id\": 168683,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 230,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6T42\",\n                        \"pjhl_description\": \"D6 LGP(30) VPAT -20 FOLDING BLADE 3D INTEGRATED GPS\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 231,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 232,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 138,\n                \"pjh_contractnumber\": \"WPH43645\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117560,\n                \"pjs_name\": \"BBV (ONLY FOLLOW GOOGLE MAPS)\",\n                \"pjh_deliverydate\": \"2023-09-07\",\n                \"syrinx_id\": 168692,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 233,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 234,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T306\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320GC EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 235,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 236,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"BR24\",\n                        \"pjhl_stockno\": \"BR635\",\n                        \"pjhl_description\": \"MB1200E ATLAS COPCO BREAKER 20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 237,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"MUNCHYD\",\n                        \"pjhl_stockno\": \"MUNC56\",\n                        \"pjhl_description\": \"MQP25 MULTI PROCESSOR.UNIT20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 139,\n                \"pjh_contractnumber\": \"ASD3918\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13229,\n                \"pjc_name\": \"MAC CIVILS LTD M281\",\n                \"pjs_id\": 117737,\n                \"pjs_name\": \"BLACKHILLOCK\",\n                \"pjh_deliverydate\": \"2023-09-05\",\n                \"syrinx_id\": 168699,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 238,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T142\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313F EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:09\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 140,\n                \"pjh_contractnumber\": \"PH84220\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117631,\n                \"pjs_name\": \"ETTON COMPOUND- PE6\",\n                \"pjh_deliverydate\": \"2023-09-07\",\n                \"syrinx_id\": 168774,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 239,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK9\",\n                        \"pjhl_stockno\": \"RD9T77\",\n                        \"pjhl_description\": \"EW100 WACKER NEUSON 10T WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 141,\n                \"pjh_contractnumber\": \"NPH4431\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12677,\n                \"pjc_name\": \"KELSTON SPARKES GROUP LTD K097\",\n                \"pjs_id\": 117709,\n                \"pjs_name\": \"MINEHEAD - TA24 5SJ\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 168779,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 240,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T48\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336F EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 142,\n                \"pjh_contractnumber\": \"NPH4430\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12677,\n                \"pjc_name\": \"KELSTON SPARKES GROUP LTD K097\",\n                \"pjs_id\": 117709,\n                \"pjs_name\": \"MINEHEAD - TA24 5SJ\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 168780,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 241,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T25\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336F EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 143,\n                \"pjh_contractnumber\": \"WPH43656\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117553,\n                \"pjs_name\": \"BBV KINGSBURY ROAD MAIN COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168782,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 242,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 243,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC40TC\",\n                        \"pjhl_stockno\": \"EX40T87\",\n                        \"pjhl_description\": \"HB365LC-3 40T Komatsu Excavator(Hybrid)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 244,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"BR50\",\n                        \"pjhl_stockno\": \"BR680\",\n                        \"pjhl_description\": \"HB3600CL ATLAS COPCO BREAKER 40T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 245,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"BUCKSHA\",\n                        \"pjhl_stockno\": \"BSHA44\",\n                        \"pjhl_description\": \"SHAKER BUCKET 40/50T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 144,\n                \"pjh_contractnumber\": \"WSD43988\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11248,\n                \"pjc_name\": \"MORGAN SINDALL ARUP JV M171\",\n                \"pjs_id\": 117745,\n                \"pjs_name\": \"CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-09-07\",\n                \"syrinx_id\": 168784,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 246,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24C\",\n                        \"pjhl_stockno\": \"EX25T158\",\n                        \"pjhl_description\": \"HB215LC-3 KOMATSU HYBRID\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 145,\n                \"pjh_contractnumber\": \"WPH43657\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12844,\n                \"pjc_name\": \"JOHN SISK & SONS (HOLDINGS) LI S115\",\n                \"pjs_id\": 117703,\n                \"pjs_name\": \"WATERS END\",\n                \"pjh_deliverydate\": \"2023-09-07\",\n                \"syrinx_id\": 168785,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 247,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ42\",\n                        \"pjhl_description\": \"14 TONNE HITACHI ZX135US-6 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 146,\n                \"pjh_contractnumber\": \"WPH43660\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13296,\n                \"pjc_name\": \"GT ENVIRONMENT - OU 5311 G175\",\n                \"pjs_id\": 117668,\n                \"pjs_name\": \"CARLISLE BYPASS\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168793,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 248,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ83\",\n                        \"pjhl_description\": \"25 TONNE CAT325FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 147,\n                \"pjh_contractnumber\": \"WSD43993\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13296,\n                \"pjc_name\": \"GT ENVIRONMENT - OU 5311 G175\",\n                \"pjs_id\": 117668,\n                \"pjs_name\": \"CARLISLE BYPASS\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168795,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 249,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH9\",\n                        \"pjhl_stockno\": \"TH9M40\",\n                        \"pjhl_description\": \"9 MTR JCB 535/95 TELEHANDLER C/W HYDRAULIC TOW HITCH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 250,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKTH\",\n                        \"pjhl_stockno\": \"TB39\",\n                        \"pjhl_description\": \"BUCKET-7&12M. JCB TELEHANDER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 251,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"FORKEX\",\n                        \"pjhl_stockno\": \"FE255\",\n                        \"pjhl_description\": \"125X50X1800MM FORK EXTENSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 252,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 148,\n                \"pjh_contractnumber\": \"WPH43661\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13296,\n                \"pjc_name\": \"GT ENVIRONMENT - OU 5311 G175\",\n                \"pjs_id\": 117668,\n                \"pjs_name\": \"CARLISLE BYPASS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168799,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 253,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK9\",\n                        \"pjhl_stockno\": \"RD9T40\",\n                        \"pjhl_description\": \"EW100 WACKER NEUSON 10T WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 254,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 149,\n                \"pjh_contractnumber\": \"WPH43663\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 117710,\n                \"pjs_name\": \"RIVER BLYTHE BYPASS CULVERT\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168820,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 255,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T115\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 150,\n                \"pjh_contractnumber\": \"WSD44005\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11396,\n                \"pjc_name\": \"CARNELL SUPPORT SERVICES LTD C250\",\n                \"pjs_id\": 117603,\n                \"pjs_name\": \"TWIGMOOR LANE\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168823,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 256,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T19\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 151,\n                \"pjh_contractnumber\": \"WSD44006\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11396,\n                \"pjc_name\": \"CARNELL SUPPORT SERVICES LTD C250\",\n                \"pjs_id\": 117603,\n                \"pjs_name\": \"TWIGMOOR LANE\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168824,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 257,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9S\",\n                        \"pjhl_stockno\": \"DVD9TS17\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 152,\n                \"pjh_contractnumber\": \"WSD44007\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11396,\n                \"pjc_name\": \"CARNELL SUPPORT SERVICES LTD C250\",\n                \"pjs_id\": 117603,\n                \"pjs_name\": \"TWIGMOOR LANE\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168825,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 258,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T27\",\n                        \"pjhl_description\": \"CAT CS66B ROLLER SELF PROPELLED 15T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 153,\n                \"pjh_contractnumber\": \"WSD44008\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11396,\n                \"pjc_name\": \"CARNELL SUPPORT SERVICES LTD C250\",\n                \"pjs_id\": 117603,\n                \"pjs_name\": \"TWIGMOOR LANE\",\n                \"pjh_deliverydate\": \"2023-09-14\",\n                \"syrinx_id\": 168826,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 259,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T126\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313F EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 260,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 154,\n                \"pjh_contractnumber\": \"WPH43664\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11396,\n                \"pjc_name\": \"CARNELL SUPPORT SERVICES LTD C250\",\n                \"pjs_id\": 117603,\n                \"pjs_name\": \"TWIGMOOR LANE\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168844,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 261,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ5K13\",\n                        \"pjhl_description\": \"Dozer D3 12 LGP CATERPILLAR STAGE V\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 262,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKTEWD\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 155,\n                \"pjh_contractnumber\": \"WSD44011\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12379,\n                \"pjc_name\": \"WALES & BORDER COUNTIES PLANT W112\",\n                \"pjs_id\": 117860,\n                \"pjs_name\": \"OLD COSTAL DEFENCE SCHEME\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 168851,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 263,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC70\",\n                        \"pjhl_stockno\": \"EX70T05\",\n                        \"pjhl_description\": \"PC700LC-11EO KOMATSU EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 264,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL - TO BE ADVISED AT TIME OF HIRE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 156,\n                \"pjh_contractnumber\": \"PH84237\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117519,\n                \"pjs_name\": \"EUROSTAR TEMPLE MILLS DEPOT - E10\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168858,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 265,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T111\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 266,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 157,\n                \"pjh_contractnumber\": \"SDW86273\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117930,\n                \"pjs_name\": \"LOWESTOFT\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168865,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 267,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T68\",\n                        \"pjhl_description\": \"14 TONNE KOMATSU PW148-11 Z/TAIL  RUBBER DUCK MONOBOOM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 158,\n                \"pjh_contractnumber\": \"SDW86276\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11860,\n                \"pjc_name\": \"HERCULES SITE SERVICES PLC H032\",\n                \"pjs_id\": 117894,\n                \"pjs_name\": \"ETTON WORKS COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-11\",\n                \"syrinx_id\": 168875,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 268,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T31\",\n                        \"pjhl_description\": \"CC1200 ROLLER DYNAPAC\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 159,\n                \"pjh_contractnumber\": \"WSD44015\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11090,\n                \"pjc_name\": \"P P OCONNOR GROUP LTD P210\",\n                \"pjs_id\": 117783,\n                \"pjs_name\": \"DEANHURST RD COUNTRYSIDE HOMES\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168878,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 269,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T67\",\n                        \"pjhl_description\": \"40 TONNE CAT336HSR 3D  EARTHWORKS READY EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 160,\n                \"pjh_contractnumber\": \"WPH43670\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13332,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION (A B271\",\n                \"pjs_id\": 117537,\n                \"pjs_name\": \"A63 CASTLE STREET PROJECT\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168892,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 270,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T116\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D Excavator\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 161,\n                \"pjh_contractnumber\": \"WPH43671\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117579,\n                \"pjs_name\": \"HILL HOUSE,\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168893,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 271,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T16\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 162,\n                \"pjh_contractnumber\": \"WSD44022\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 117937,\n                \"pjs_name\": \"TX35\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 168908,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 272,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"XROLLER\",\n                        \"pjhl_description\": \"3T PADFOOT ROLLER 1500MM FLEET 15281\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 163,\n                \"pjh_contractnumber\": \"PH84254\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13374,\n                \"pjc_name\": \"BALFOUR BEATTY GROUP LTD (M25) B273\",\n                \"pjs_id\": 117544,\n                \"pjs_name\": \"M25 STARBUCKS COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-11\",\n                \"syrinx_id\": 168929,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 273,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 274,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T12\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 164,\n                \"pjh_contractnumber\": \"WSD44030\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12583,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S120\",\n                \"pjs_id\": 117698,\n                \"pjs_name\": \"JUN 10\",\n                \"pjh_deliverydate\": \"2023-09-11\",\n                \"syrinx_id\": 168969,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 275,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKTIL\",\n                        \"pjhl_stockno\": \"BKT43\",\n                        \"pjhl_description\": \"TILTING DITCHING BUCKET 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 165,\n                \"pjh_contractnumber\": \"WSD44031\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13028,\n                \"pjc_name\": \"BAM NUTTALL LTD (BAA.2080) B235\",\n                \"pjs_id\": 117568,\n                \"pjs_name\": \"BAM COMPOUND LEEDS\",\n                \"pjh_deliverydate\": \"2023-09-11\",\n                \"syrinx_id\": 168971,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 276,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T37\",\n                        \"pjhl_description\": \"CC1200 ROLLER DYNAPAC\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 166,\n                \"pjh_contractnumber\": \"PH86311\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117629,\n                \"pjs_name\": \"ETTON COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 168975,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 277,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T44\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 167,\n                \"pjh_contractnumber\": \"PH84271\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11477,\n                \"pjc_name\": \"ENGLOBE REGENERATION UK LTD C022\",\n                \"pjs_id\": 117644,\n                \"pjs_name\": \"DAGENHAM- RM8\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168978,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 278,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T70\",\n                        \"pjhl_description\": \"40 TONNE CAT336HSR 2 D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 168,\n                \"pjh_contractnumber\": \"WSD44035\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12665,\n                \"pjc_name\": \"STUART WELLS LIMITED S214\",\n                \"pjs_id\": 117915,\n                \"pjs_name\": \"NORTHSIDE OF RIVER AVON\",\n                \"pjh_deliverydate\": \"2023-09-11\",\n                \"syrinx_id\": 168986,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 279,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH9\",\n                        \"pjhl_stockno\": \"TH9M38\",\n                        \"pjhl_description\": \"9 MTR JCB 535/95 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 169,\n                \"pjh_contractnumber\": \"WPH43684\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13332,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION (A B271\",\n                \"pjs_id\": 117537,\n                \"pjs_name\": \"A63 CASTLE STREET PROJECT\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169023,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 280,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK9\",\n                        \"pjhl_stockno\": \"RD9T39\",\n                        \"pjhl_description\": \"EW100 WACKER NEUSON 10T WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 170,\n                \"pjh_contractnumber\": \"WSD44051\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13347,\n                \"pjc_name\": \"COLAS LIMITED -COL GBR0005 C316\",\n                \"pjs_id\": 117609,\n                \"pjs_name\": \"A635 GOLD THORPE ROUNDABOUT\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169042,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 281,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR277\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 171,\n                \"pjh_contractnumber\": \"WSD44054\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117550,\n                \"pjs_name\": \"A38 OVERBRIDGE\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169047,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 282,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T19\",\n                        \"pjhl_description\": \"30 TONNE CAT330-07 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 283,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 284,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 172,\n                \"pjh_contractnumber\": \"WPH43688\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117582,\n                \"pjs_name\": \"THORNHILL POWER STATION\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169061,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 285,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ235\",\n                        \"pjhl_description\": \"(XW5) CAT315GC EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 286,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 173,\n                \"pjh_contractnumber\": \"WPH43692\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 117710,\n                \"pjs_name\": \"RIVER BLYTHE BYPASS CULVERT\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169067,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 287,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T63\",\n                        \"pjhl_description\": \"40 TONNE CAT336 FL EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 288,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 174,\n                \"pjh_contractnumber\": \"SDW86329\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11396,\n                \"pjc_name\": \"CARNELL SUPPORT SERVICES LTD C250\",\n                \"pjs_id\": 117885,\n                \"pjs_name\": \"THURLEIGH- MK44\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169077,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 289,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T16\",\n                        \"pjhl_description\": \"CAT CS64B ROLLER SELF PROPELLED 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 175,\n                \"pjh_contractnumber\": \"ASD3921\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11053,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION B056\",\n                \"pjs_id\": 117540,\n                \"pjs_name\": \"BB YARD JUST OFF B966\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169087,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 290,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T157\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 291,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 176,\n                \"pjh_contractnumber\": \"SDW86334\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11354,\n                \"pjc_name\": \"WESTMINSTER WASTE LIMITED W103\",\n                \"pjs_id\": 117939,\n                \"pjs_name\": \"BELVEDERE- DA17\",\n                \"pjh_deliverydate\": \"2023-09-13\",\n                \"syrinx_id\": 169088,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 292,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M27\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 540/140 HI -VIS Low Emission\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 177,\n                \"pjh_contractnumber\": \"WPH43694\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117865,\n                \"pjs_name\": \"WOODCOCK FOLD\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169098,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 293,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T252\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 294,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 295,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL - TO BE ADVISED AT TIME OF HIRE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 178,\n                \"pjh_contractnumber\": \"PH84301\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11477,\n                \"pjc_name\": \"ENGLOBE REGENERATION UK LTD C022\",\n                \"pjs_id\": 117644,\n                \"pjs_name\": \"DAGENHAM- RM8\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169102,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 296,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK147\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 297,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HA\",\n                        \"pjhl_stockno\": \"H/SUCK\",\n                        \"pjhl_description\": \"SUCTION HOSE 3\\\" X 6M\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 179,\n                \"pjh_contractnumber\": \"PH84303\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117629,\n                \"pjs_name\": \"ETTON COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169109,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 298,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T79\",\n                        \"pjhl_description\": \"14 TONNE VOLVO EWR130E  RUBBER DUCK 2 PIECE BOOM\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 299,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"EA002\",\n                        \"pjhl_description\": \"MS2500SG REED CUTTING BUCKET 2.5 meter\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 180,\n                \"pjh_contractnumber\": \"PH84305\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117629,\n                \"pjs_name\": \"ETTON COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169113,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 300,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T95\",\n                        \"pjhl_description\": \"14 TONNE CAT M315-07  ZERO TAIL VA BOOM WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 301,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"EA003\",\n                        \"pjhl_description\": \"MS2500SG REED CUTTING BUCKET 2.5 meter\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 181,\n                \"pjh_contractnumber\": \"PH84307\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13403,\n                \"pjc_name\": \"BALFOUR BEATTY CIVIL ENG (M1) B276\",\n                \"pjs_id\": 117535,\n                \"pjs_name\": \"CHALTON CROSS FARM\",\n                \"pjh_deliverydate\": \"2023-09-13\",\n                \"syrinx_id\": 169126,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 302,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 303,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6T89\",\n                        \"pjhl_description\": \"D6LGP30V  VPAT -20 FOLDING BLADE 3D INTEGRATED GPS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 304,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 182,\n                \"pjh_contractnumber\": \"WSD44078\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117511,\n                \"pjs_name\": \"FFORD BRONWYDD\",\n                \"pjh_deliverydate\": \"2023-09-15\",\n                \"syrinx_id\": 169143,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 305,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE17\",\n                        \"pjhl_stockno\": \"TH17M10\",\n                        \"pjhl_description\": \"17 MTR JCB 540-170 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 183,\n                \"pjh_contractnumber\": \"WPH43703\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 117632,\n                \"pjs_name\": \"FRANKLEY WTW\",\n                \"pjh_deliverydate\": \"2023-09-13\",\n                \"syrinx_id\": 169158,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 306,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T139\",\n                        \"pjhl_description\": \"5 TONNE CAT305E2 CR EXCAVATOR ZERO TAIL AND EUSR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 184,\n                \"pjh_contractnumber\": \"WSD44086\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117865,\n                \"pjs_name\": \"WOODCOCK FOLD\",\n                \"pjh_deliverydate\": \"2023-09-13\",\n                \"syrinx_id\": 169177,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 307,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"XTRAILERS\",\n                        \"pjhl_description\": \"DUMP TRAILER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 185,\n                \"pjh_contractnumber\": \"WSD44090\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117767,\n                \"pjs_name\": \"MURPHY COMPOUND, ST5\",\n                \"pjh_deliverydate\": \"2023-09-14\",\n                \"syrinx_id\": 169183,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 308,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRACK07\",\n                        \"pjhl_stockno\": \"X-NTD706\",\n                        \"pjhl_description\": \"7 T TRACKED DUMPER RIDGED MST1500VD\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 186,\n                \"pjh_contractnumber\": \"WSD44094\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12232,\n                \"pjc_name\": \"SG CIVIL ENGINEERING LTD S065\",\n                \"pjs_id\": 117804,\n                \"pjs_name\": \"SG CIVIL ENGINEERING LTD\",\n                \"pjh_deliverydate\": \"2023-09-13\",\n                \"syrinx_id\": 169193,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 309,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR24\",\n                        \"pjhl_stockno\": \"BR993\",\n                        \"pjhl_description\": \"EPIROC MB1200E BREAKER  20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 187,\n                \"pjh_contractnumber\": \"WSD44095\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13296,\n                \"pjc_name\": \"GT ENVIRONMENT - OU 5311 G175\",\n                \"pjs_id\": 117668,\n                \"pjs_name\": \"CARLISLE BYPASS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169196,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 310,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9S\",\n                        \"pjhl_stockno\": \"DVD9TS37\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 311,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 188,\n                \"pjh_contractnumber\": \"WPH43714\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12844,\n                \"pjc_name\": \"JOHN SISK & SONS (HOLDINGS) LI S115\",\n                \"pjs_id\": 117703,\n                \"pjs_name\": \"WATERS END\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169234,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 312,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ4K18\",\n                        \"pjhl_description\": \"Dozer D2 LGP-12 CATERPILLAR Low Emission\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 313,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKTEWD\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 189,\n                \"pjh_contractnumber\": \"SDW86382\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10539,\n                \"pjc_name\": \"BARHALE LIMITED 438\",\n                \"pjs_id\": 117593,\n                \"pjs_name\": \"WARE- SG12 8JS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169279,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 314,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"SHAFTSNK\",\n                        \"pjhl_stockno\": \"4093\",\n                        \"pjhl_description\": \"40 TONNE LIEBHERR 934C SHAFT SINK EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 190,\n                \"pjh_contractnumber\": \"WPH43726\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117687,\n                \"pjs_name\": \"MOSSWOOD TREATMENT WORKS\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169310,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 315,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"ROLLER13-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 13 Tonne Roller\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 316,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T60\",\n                        \"pjhl_description\": \"VOLVO SD135 SELF PROPEELED ROLLER 13T HIGH TRACTION VARIANT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 191,\n                \"pjh_contractnumber\": \"WSD44137\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13028,\n                \"pjc_name\": \"BAM NUTTALL LTD (BAA.2080) B235\",\n                \"pjs_id\": 117568,\n                \"pjs_name\": \"BAM COMPOUND LEEDS\",\n                \"pjh_deliverydate\": \"2023-09-14\",\n                \"syrinx_id\": 169311,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 317,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKSHA\",\n                        \"pjhl_stockno\": \"BSHA77\",\n                        \"pjhl_description\": \"SHAKER 8 TONNE - strickland\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 192,\n                \"pjh_contractnumber\": \"WSD44143\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12622,\n                \"pjc_name\": \"SEYMOUR CIVIL ENGINEERING CONT S210\",\n                \"pjs_id\": 117914,\n                \"pjs_name\": \"OLD WHITTINGTON STW (TIL DOUGLAS COMP0\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169337,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 318,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ156\",\n                        \"pjhl_description\": \"(XW5) 13 TONNE KOMATSU PC138 US-11 ZERO TAIL SWING EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 319,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"SLI\",\n                        \"pjhl_description\": \"SAFE LOAD INDICATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 320,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 193,\n                \"pjh_contractnumber\": \"WPH43730\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117580,\n                \"pjs_name\": \"RAVENSTHORPE ROAD/ CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169347,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 321,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T312\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION TRIMBLE EARTHWORKS  READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 194,\n                \"pjh_contractnumber\": \"WSD44147\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117580,\n                \"pjs_name\": \"RAVENSTHORPE ROAD/ CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-09-15\",\n                \"syrinx_id\": 169354,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 322,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"BKT94\",\n                        \"pjhl_description\": \"TOP SOIL BLADE 15T LENGHTH 1785MM HEIGHT 240MM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 195,\n                \"pjh_contractnumber\": \"SDW86396\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12305,\n                \"pjc_name\": \"J&J PALMER GROUNDWORKS LTD J088\",\n                \"pjs_id\": 117691,\n                \"pjs_name\": \"ALDERSHOT - GU12\",\n                \"pjh_deliverydate\": \"2023-09-19\",\n                \"syrinx_id\": 169361,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 323,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T54\",\n                        \"pjhl_description\": \"VOLVO SD135B ROLLER SELF PROPELLED 15T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 196,\n                \"pjh_contractnumber\": \"WPH43734\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117581,\n                \"pjs_name\": \"CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169374,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 324,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T275\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 197,\n                \"pjh_contractnumber\": \"WPH43736\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11053,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION B056\",\n                \"pjs_id\": 117871,\n                \"pjs_name\": \"DALEHOUSE LANE\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169382,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 325,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 326,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T173\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D EARTH WORKS READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 327,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"RCI\",\n                        \"pjhl_stockno\": \"RCI1\",\n                        \"pjhl_description\": \"CAT RCI\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 198,\n                \"pjh_contractnumber\": \"WSD44163\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11393,\n                \"pjc_name\": \"JMC (NORTH WEST) LTD J084\",\n                \"pjs_id\": 117697,\n                \"pjs_name\": \"OCU\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169392,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 328,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T304\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION TRIMBLE EARTHWORKS  READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 199,\n                \"pjh_contractnumber\": \"WSD44164\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11393,\n                \"pjc_name\": \"JMC (NORTH WEST) LTD J084\",\n                \"pjs_id\": 117697,\n                \"pjs_name\": \"OCU\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169394,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 329,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS41\",\n                        \"pjhl_description\": \"6 TONNE DUMPER P/SWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 200,\n                \"pjh_contractnumber\": \"WSD44165\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11393,\n                \"pjc_name\": \"JMC (NORTH WEST) LTD J084\",\n                \"pjs_id\": 117697,\n                \"pjs_name\": \"OCU\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169395,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 330,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T190\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 201,\n                \"pjh_contractnumber\": \"WSD44166\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11393,\n                \"pjc_name\": \"JMC (NORTH WEST) LTD J084\",\n                \"pjs_id\": 117697,\n                \"pjs_name\": \"OCU\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169396,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 331,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM9\",\n                        \"pjhl_stockno\": \"DU9T60\",\n                        \"pjhl_description\": \"TA9000 MECALEC 9 TONNE STRAIGHT DUMPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 16:48:19\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 202,\n                \"pjh_contractnumber\": \"WSD44170\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117767,\n                \"pjs_name\": \"MURPHY COMPOUND, ST5\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169415,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 332,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T46\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 203,\n                \"pjh_contractnumber\": \"WPH43747\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12288,\n                \"pjc_name\": \"COSTAIN LIMITED (M6) C109\",\n                \"pjs_id\": 117886,\n                \"pjs_name\": \"M6 21A-26 ,\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169417,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 333,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK8\",\n                        \"pjhl_stockno\": \"RD9T37\",\n                        \"pjhl_description\": \"9 TONNE TAKEUCHI TB295W RUBBER DUCK\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 204,\n                \"pjh_contractnumber\": \"NSD8462\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117748,\n                \"pjs_name\": \"CARDIFF - CF14 2FP\",\n                \"pjh_deliverydate\": \"2023-09-19\",\n                \"syrinx_id\": 169418,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 334,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T47\",\n                        \"pjhl_description\": \"CAT CS78B SELF PROPELLRD ROLLER 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 205,\n                \"pjh_contractnumber\": \"PH84350\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11396,\n                \"pjc_name\": \"CARNELL SUPPORT SERVICES LTD C250\",\n                \"pjs_id\": 117885,\n                \"pjs_name\": \"THURLEIGH- MK44\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169420,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 335,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK22\",\n                        \"pjhl_stockno\": \"RD22T01\",\n                        \"pjhl_description\": \"22 TONNE HITACHI ZX220W-5B RUBBER DUCK\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 336,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"COMPAC\",\n                        \"pjhl_stockno\": \"CP19\",\n                        \"pjhl_description\": \"Atlas Copco HC1050 Compactor 13t/20t\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 206,\n                \"pjh_contractnumber\": \"WPH43749\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13457,\n                \"pjc_name\": \"THE UNIVERSITY OF LEICESTER T170\",\n                \"pjs_id\": 117825,\n                \"pjs_name\": \"41-43 MAIN STREET\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169427,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 337,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC1.5\",\n                        \"pjhl_stockno\": \"EX2T42\",\n                        \"pjhl_description\": \"1.5 TONNE CAT 301.5 EXCAVATOR C/w Quick Hitch\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 207,\n                \"pjh_contractnumber\": \"WSD44176\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117580,\n                \"pjs_name\": \"RAVENSTHORPE ROAD/ CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-09-15\",\n                \"syrinx_id\": 169438,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 338,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"BKT15\",\n                        \"pjhl_description\": \"BACK FILL BLADE 108\\\" - 13TON - 20TON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 208,\n                \"pjh_contractnumber\": \"SDW86426\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10539,\n                \"pjc_name\": \"BARHALE LIMITED 438\",\n                \"pjs_id\": 117592,\n                \"pjs_name\": \"BARHALE COMPOUND- NW1\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169451,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 339,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"GRABS\",\n                        \"pjhl_stockno\": \"GRAB28\",\n                        \"pjhl_description\": \"ARDEN BA403 GRAB WITH ROTATION 20t\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 340,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PGRAB\",\n                        \"pjhl_stockno\": \"PG001\",\n                        \"pjhl_description\": \"POLE GRAB EXTENSION 1 METER C/W BOLTS AND NUTS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 209,\n                \"pjh_contractnumber\": \"WSD44185\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10574,\n                \"pjc_name\": \"SUNBELT RENTALS LTD (EA) A043\",\n                \"pjs_id\": 117820,\n                \"pjs_name\": \"WHEEL HOUSE DOORS\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169479,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 341,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T237\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 210,\n                \"pjh_contractnumber\": \"WSD44187\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117686,\n                \"pjs_name\": \"ROUNDHILL STW\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169480,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 342,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40TC\",\n                        \"pjhl_stockno\": \"EX40T95\",\n                        \"pjhl_description\": \"HB365LC-3 40T Komatsu Excavator(Hybrid)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 343,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCK\",\n                        \"pjhl_stockno\": \"BLOT\",\n                        \"pjhl_description\": \"LOADING BUCKET WITH TEETH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 211,\n                \"pjh_contractnumber\": \"WSD44186\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117548,\n                \"pjs_name\": \"LITCHFIELD ROAD\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169481,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 344,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"HA\",\n                        \"pjhl_stockno\": \"PROBE08\",\n                        \"pjhl_description\": \"PROBE TO FIT 13T - 3METER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 212,\n                \"pjh_contractnumber\": \"PH84369\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12569,\n                \"pjc_name\": \"DUNTON ENVIRONMENTAL LTD D053\",\n                \"pjs_id\": 117638,\n                \"pjs_name\": \"SLOUGH GAS WORKS\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169482,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 345,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T16\",\n                        \"pjhl_description\": \"30 TONNE KOMATSU PC290LC-11 EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 213,\n                \"pjh_contractnumber\": \"WSD44188\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117548,\n                \"pjs_name\": \"LITCHFIELD ROAD\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169485,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 346,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"HA\",\n                        \"pjhl_stockno\": \"PROBE10\",\n                        \"pjhl_description\": \"PROBE TO FIT 13T/20T - 4.5 METER LONG\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 214,\n                \"pjh_contractnumber\": \"WSD44189\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117657,\n                \"pjs_name\": \"BONNER LANE\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169488,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 347,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T78\",\n                        \"pjhl_description\": \"5 TONNE E45 BOBCAT EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 215,\n                \"pjh_contractnumber\": \"WSD44192\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117579,\n                \"pjs_name\": \"HILL HOUSE,\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169494,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 348,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T324\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320GC EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 216,\n                \"pjh_contractnumber\": \"WPH43761\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117585,\n                \"pjs_name\": \"TRU COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169510,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 349,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXCVAC\",\n                        \"pjhl_stockno\": \"XEXCVAC\",\n                        \"pjhl_description\": \"Vacuum Excavator (PER HOUR, MIN 10 HOURS)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 217,\n                \"pjh_contractnumber\": \"SDW86457\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117670,\n                \"pjs_name\": \"A47 - WATERLOW ROAD\",\n                \"pjh_deliverydate\": \"2023-09-19\",\n                \"syrinx_id\": 169558,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 350,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T273\",\n                        \"pjhl_description\": \"(XW4) 9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 218,\n                \"pjh_contractnumber\": \"SDW86458\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12640,\n                \"pjc_name\": \"HOCHTIEF MURPHY JOINT VENTURE H147\",\n                \"pjs_id\": 117678,\n                \"pjs_name\": \"ELTHAM TUNNEL HEADHOUSE\",\n                \"pjh_deliverydate\": \"2023-09-20\",\n                \"syrinx_id\": 169559,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 351,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T70\",\n                        \"pjhl_description\": \"5 TONNE U55-4 KUBOTA EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 352,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"RENTV\",\n                        \"pjhl_stockno\": \"XRENTV\",\n                        \"pjhl_description\": \"Rentavent\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 353,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"X\",\n                        \"pjhl_description\": \"FIRE SUPPRESSION UNIT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 354,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR878\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 219,\n                \"pjh_contractnumber\": \"WSD44206\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13347,\n                \"pjc_name\": \"COLAS LIMITED -COL GBR0005 C316\",\n                \"pjs_id\": 117609,\n                \"pjs_name\": \"A635 GOLD THORPE ROUNDABOUT\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169571,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 355,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T179\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 356,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR279\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 220,\n                \"pjh_contractnumber\": \"SDW86466\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169575,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 357,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T24\",\n                        \"pjhl_description\": \"CAT CS78B SELF PROPELLED ROLLER 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 358,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 221,\n                \"pjh_contractnumber\": \"SDW86467\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169578,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 359,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T48\",\n                        \"pjhl_description\": \"CAT CS78B SELF PROPELLRD ROLLER 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 360,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 222,\n                \"pjh_contractnumber\": \"PH84386\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169581,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 361,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 362,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DOZWH\",\n                        \"pjhl_stockno\": \"DZ6T52\",\n                        \"pjhl_description\": \"Dozer D6 XE LGP30V CAT HYBRID (VPAT FOLDABLE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 363,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 364,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 223,\n                \"pjh_contractnumber\": \"PH84387\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169582,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 365,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 366,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DOZWH\",\n                        \"pjhl_stockno\": \"DZ6T61\",\n                        \"pjhl_description\": \"Dozer D6 XE LGP30V CAT HYBRID (VPAT FOLDABLE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 367,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 368,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 224,\n                \"pjh_contractnumber\": \"PH84388\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169584,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 369,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 370,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK70\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 371,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 372,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"VTANK\",\n                        \"pjhl_stockno\": \"DB90\",\n                        \"pjhl_description\": \"MAJOR 2400 VACUUM TANKER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 225,\n                \"pjh_contractnumber\": \"PH84391\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169588,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 373,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 374,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK84\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR FRONT LINKAGE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 375,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 376,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR137\",\n                        \"pjhl_description\": \"HOGG 39FT.FLAT TRAILER 3 AXLE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 226,\n                \"pjh_contractnumber\": \"PH84392\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169589,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 377,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 378,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T268\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 3D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 379,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 380,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 227,\n                \"pjh_contractnumber\": \"PH84393\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169590,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 381,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 382,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T58\",\n                        \"pjhl_description\": \"40 TONNE CAT336HSR 2 D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 383,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 384,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 228,\n                \"pjh_contractnumber\": \"PH84394\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169592,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 385,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 386,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T83\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336-07 EXCAVATOR 3D EARTHWORKS INSTALL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 387,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 388,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 229,\n                \"pjh_contractnumber\": \"PH84395\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169593,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 389,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 390,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M87\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 540/140 HI -VIS Low Emission  - AIR CON.\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 391,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"FORKEX\",\n                        \"pjhl_stockno\": \"FE145\",\n                        \"pjhl_description\": \"125X50X1800MM FORK EXTENSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 392,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"BUCKTH\",\n                        \"pjhl_stockno\": \"TB48\",\n                        \"pjhl_description\": \"BUCKET JCB TELEHANDER 9M - 17M\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 393,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 230,\n                \"pjh_contractnumber\": \"PH84396\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169594,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 394,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 395,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T214\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-06A\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 396,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 231,\n                \"pjh_contractnumber\": \"PH84397\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169595,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 397,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 398,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRAD\",\n                        \"pjhl_stockno\": \"GR004\",\n                        \"pjhl_description\": \"GRADER 14 EMV C/W MID MOUNTED RIPPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 399,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 232,\n                \"pjh_contractnumber\": \"PH84398\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169596,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 400,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 401,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T41\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 402,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 233,\n                \"pjh_contractnumber\": \"PH84400\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169598,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 403,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 404,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRACK12\",\n                        \"pjhl_stockno\": \"XDTRACK12\",\n                        \"pjhl_description\": \"PRINOTH PANTHER TRACKED DUMPER ( 1303\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 405,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 234,\n                \"pjh_contractnumber\": \"PH84401\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169599,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 406,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 407,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T03\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 408,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 235,\n                \"pjh_contractnumber\": \"PH84403\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169601,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 409,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 410,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T37\",\n                        \"pjhl_description\": \"CAT CS78B SELF PROPELLED ROLLER 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 411,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 236,\n                \"pjh_contractnumber\": \"PH84404\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169603,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 412,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 413,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T241\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 414,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 415,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 237,\n                \"pjh_contractnumber\": \"NSD8474\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117510,\n                \"pjs_name\": \"CORNWALL - TR8 4NY\",\n                \"pjh_deliverydate\": \"2023-09-20\",\n                \"syrinx_id\": 169604,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 416,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"FORKEX\",\n                        \"pjhl_stockno\": \"FE130\",\n                        \"pjhl_description\": \"125X50X1800MM FORK EXTENSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 238,\n                \"pjh_contractnumber\": \"NSD8475\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117510,\n                \"pjs_name\": \"CORNWALL - TR8 4NY\",\n                \"pjh_deliverydate\": \"2023-09-20\",\n                \"syrinx_id\": 169605,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 417,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"FMHOOK\",\n                        \"pjhl_stockno\": \"LH48\",\n                        \"pjhl_description\": \"TELEHANDLER LIFTING HOOK 4.0 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 239,\n                \"pjh_contractnumber\": \"PH84406\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169607,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 418,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 419,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DUSTSUP\",\n                        \"pjhl_stockno\": \"DT30T69\",\n                        \"pjhl_description\": \"B30E BELL C/W 27000 LITRE DUST SUPPRESSION BOWSER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 420,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 240,\n                \"pjh_contractnumber\": \"PH84407\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169608,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 421,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 422,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T180\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 423,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 241,\n                \"pjh_contractnumber\": \"PH84408\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169609,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 424,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 425,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T170\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 426,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 242,\n                \"pjh_contractnumber\": \"PH84410\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169611,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 427,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 428,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T107\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 429,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 243,\n                \"pjh_contractnumber\": \"PH84411\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169612,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 430,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 431,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T158\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 432,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 244,\n                \"pjh_contractnumber\": \"PH84412\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169614,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 433,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 434,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T166\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 435,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 245,\n                \"pjh_contractnumber\": \"PH84413\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169615,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 436,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 437,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T162\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 438,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 246,\n                \"pjh_contractnumber\": \"PH84414\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169616,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 439,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 440,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK45\",\n                        \"pjhl_stockno\": \"DT45T28\",\n                        \"pjhl_description\": \"CAT 745  DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 441,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 247,\n                \"pjh_contractnumber\": \"PH84415\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169617,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 442,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 443,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK45\",\n                        \"pjhl_stockno\": \"DT45T27\",\n                        \"pjhl_description\": \"CAT 745  DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 444,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 248,\n                \"pjh_contractnumber\": \"PH84416\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169618,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 445,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 446,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK45\",\n                        \"pjhl_stockno\": \"DT45T29\",\n                        \"pjhl_description\": \"CAT 745  DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 447,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 249,\n                \"pjh_contractnumber\": \"PH84417\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169619,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 448,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 449,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK45\",\n                        \"pjhl_stockno\": \"DT45T31\",\n                        \"pjhl_description\": \"CAT 745  DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 450,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 250,\n                \"pjh_contractnumber\": \"PH84418\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169620,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 451,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 452,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK45\",\n                        \"pjhl_stockno\": \"DT45T30\",\n                        \"pjhl_description\": \"CAT 745  DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 453,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 251,\n                \"pjh_contractnumber\": \"PH84419\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169622,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 454,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 455,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRACK12\",\n                        \"pjhl_stockno\": \"XDTRACK12\",\n                        \"pjhl_description\": \"MAROOKA MST2200VDR - 1113\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 456,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"X\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 252,\n                \"pjh_contractnumber\": \"PH84420\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169623,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 457,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 458,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRACK12\",\n                        \"pjhl_stockno\": \"XDTRACK12\",\n                        \"pjhl_description\": \"MAROOKA MST2200VDR - 1117\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 459,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"X\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 253,\n                \"pjh_contractnumber\": \"WSD44218\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13347,\n                \"pjc_name\": \"COLAS LIMITED -COL GBR0005 C316\",\n                \"pjs_id\": 117609,\n                \"pjs_name\": \"A635 GOLD THORPE ROUNDABOUT\",\n                \"pjh_deliverydate\": \"2023-09-19\",\n                \"syrinx_id\": 169633,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 460,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"XROLLER\",\n                        \"pjhl_description\": \"Roller Tandem BW100\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 254,\n                \"pjh_contractnumber\": \"SDW86474\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117847,\n                \"pjs_name\": \"FARNBOROUGH - GU14 0LZ\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169640,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 461,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ54\",\n                        \"pjhl_description\": \"14 TONNE HITACHI ZX135US-6 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 462,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 255,\n                \"pjh_contractnumber\": \"SDW86469\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13137,\n                \"pjc_name\": \"TILBURY DOUGLAS CONST LTD T153\",\n                \"pjs_id\": 117827,\n                \"pjs_name\": \"FARRINGDON - SN7\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169643,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 463,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T130\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313F EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 256,\n                \"pjh_contractnumber\": \"WSD44224\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11053,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION B056\",\n                \"pjs_id\": 117870,\n                \"pjs_name\": \"WELLINGTON STREET\",\n                \"pjh_deliverydate\": \"2023-09-20\",\n                \"syrinx_id\": 169657,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 464,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"COMPAC\",\n                        \"pjhl_stockno\": \"CP55\",\n                        \"pjhl_description\": \"EPIROC HC850 Compactor Plate 13t - 20t TON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 257,\n                \"pjh_contractnumber\": \"WSD44226\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13028,\n                \"pjc_name\": \"BAM NUTTALL LTD (BAA.2080) B235\",\n                \"pjs_id\": 117568,\n                \"pjs_name\": \"BAM COMPOUND LEEDS\",\n                \"pjh_deliverydate\": \"2023-09-20\",\n                \"syrinx_id\": 169660,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 465,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"COMPAC\",\n                        \"pjhl_stockno\": \"CP46\",\n                        \"pjhl_description\": \"EPIROC HC350 Compactor 5T/8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 258,\n                \"pjh_contractnumber\": \"PH84436\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117867,\n                \"pjs_name\": \"AYLESBURY- HP22\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169676,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 466,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T263\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 259,\n                \"pjh_contractnumber\": \"SDW86483\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117867,\n                \"pjs_name\": \"AYLESBURY- HP22\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169679,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 467,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS47\",\n                        \"pjhl_description\": \"6 TONNE DUMPER P/SWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 260,\n                \"pjh_contractnumber\": \"SDW86484\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117867,\n                \"pjs_name\": \"AYLESBURY- HP22\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169680,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 468,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS53\",\n                        \"pjhl_description\": \"TA6000SH MECALAC 6 TONNE SWIVELDUMPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 261,\n                \"pjh_contractnumber\": \"SDW86485\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117867,\n                \"pjs_name\": \"AYLESBURY- HP22\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169681,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 469,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T35\",\n                        \"pjhl_description\": \"CC1200 ROLLER DYNAPAC\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 262,\n                \"pjh_contractnumber\": \"SDW86486\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11053,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION B056\",\n                \"pjs_id\": 117538,\n                \"pjs_name\": \"M20 PROJECT - TN24\",\n                \"pjh_deliverydate\": \"2023-09-20\",\n                \"syrinx_id\": 169684,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 470,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ200\",\n                        \"pjhl_description\": \"CAT315-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 471,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 472,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"REMOTE\",\n                        \"pjhl_description\": \"REMOTE - HYDRAULIC CUT OUT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 473,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 474,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT2\",\n                        \"pjhl_description\": \"X WATCH HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 263,\n                \"pjh_contractnumber\": \"SDW86489\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12460,\n                \"pjc_name\": \"ALIGN JV A104\",\n                \"pjs_id\": 117504,\n                \"pjs_name\": \"CHALFONT  - WD3\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169686,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 475,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR100\",\n                        \"pjhl_description\": \"25FT LOW LOADER TRAILER (CHIEFTAIN FIXED RAMP) -MWL 27TON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 264,\n                \"pjh_contractnumber\": \"WSD44234\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13305,\n                \"pjc_name\": \"CLOVIS LANDE ASSOCIATES LTD C313\",\n                \"pjs_id\": 117608,\n                \"pjs_name\": \"MFG SWALLOW\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169694,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 476,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK8\",\n                        \"pjhl_stockno\": \"RD9T12\",\n                        \"pjhl_description\": \"9 TONNE TAKEUCHI TB295W RUBBER DUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 265,\n                \"pjh_contractnumber\": \"SDW86493\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117631,\n                \"pjs_name\": \"ETTON COMPOUND- PE6\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169699,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 477,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"FLAIL\",\n                        \"pjhl_stockno\": \"XFLAIL\",\n                        \"pjhl_description\": \"Flail 14T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 266,\n                \"pjh_contractnumber\": \"SDW86494\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117631,\n                \"pjs_name\": \"ETTON COMPOUND- PE6\",\n                \"pjh_deliverydate\": \"2023-09-20\",\n                \"syrinx_id\": 169702,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 478,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"FLAIL\",\n                        \"pjhl_stockno\": \"EA025\",\n                        \"pjhl_description\": \"FEMAC T13 FR130 REV FLAIL 13T/25T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 267,\n                \"pjh_contractnumber\": \"ASD3925\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12856,\n                \"pjc_name\": \"BAM NUTTALL LTD (BAA.310B) B129\",\n                \"pjs_id\": 117569,\n                \"pjs_name\": \"ALYTH SUBSTATION\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169707,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 479,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T91\",\n                        \"pjhl_description\": \"3 TONNE HITACHI ZX26U-6 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 268,\n                \"pjh_contractnumber\": \"PH84443\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169710,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 480,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 481,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DOZWH\",\n                        \"pjhl_stockno\": \"DZ6T82\",\n                        \"pjhl_description\": \"Dozer D6 XE LGP30V CAT HYBRID (VPAT FOLDABLE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 482,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 483,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 269,\n                \"pjh_contractnumber\": \"SDW86502\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11551,\n                \"pjc_name\": \"DAWSON-WAM LIMITED D017\",\n                \"pjs_id\": 117634,\n                \"pjs_name\": \"BREAKSPEAR ROAD SOUTH\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169728,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 484,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC50B\",\n                        \"pjhl_stockno\": \"EX50T23\",\n                        \"pjhl_description\": \"50 TONNE LIUGONG 950E EXCAVATOR DEMO SPEC\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 485,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PILEHAMM\",\n                        \"pjhl_stockno\": \"X\",\n                        \"pjhl_description\": \"MOVAX PILING HAMMER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 270,\n                \"pjh_contractnumber\": \"WSD44245\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13463,\n                \"pjc_name\": \"JOHN SLONE CONTRACTING LTD J120\",\n                \"pjs_id\": 117706,\n                \"pjs_name\": \"HUTTOFT\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169748,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 486,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T40\",\n                        \"pjhl_description\": \"5 TONNE HITACHI ZX55U-5A  EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 271,\n                \"pjh_contractnumber\": \"WSD44246\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13463,\n                \"pjc_name\": \"JOHN SLONE CONTRACTING LTD J120\",\n                \"pjs_id\": 117706,\n                \"pjs_name\": \"HUTTOFT\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169749,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 487,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T16\",\n                        \"pjhl_description\": \"CC1200 ROLLER ATLAS COPCO\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 272,\n                \"pjh_contractnumber\": \"NPH4462\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12130,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED K068\",\n                \"pjs_id\": 117718,\n                \"pjs_name\": \"BIRDLIP - GL4 8JX\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169750,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 488,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"XDTRUCK12\",\n                        \"pjhl_description\": \"12 Tonne Dump Truck - Hydrema\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 273,\n                \"pjh_contractnumber\": \"NPH4463\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12130,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED K068\",\n                \"pjs_id\": 117718,\n                \"pjs_name\": \"BIRDLIP - GL4 8JX\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169751,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 489,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"XDTRUCK12\",\n                        \"pjhl_description\": \"12 Tonne Dump Truck - Hydrema\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 274,\n                \"pjh_contractnumber\": \"PH84455\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117629,\n                \"pjs_name\": \"ETTON COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169757,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 490,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK68\",\n                        \"pjhl_description\": \"JOHN DEERE 6195M TRACTOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 491,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"WBOWSER\",\n                        \"pjhl_stockno\": \"DB128\",\n                        \"pjhl_description\": \"FLEMMING 2300 GALLON WATER BOWSER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 275,\n                \"pjh_contractnumber\": \"SDW86508\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13403,\n                \"pjc_name\": \"BALFOUR BEATTY CIVIL ENG (M1) B276\",\n                \"pjs_id\": 117535,\n                \"pjs_name\": \"CHALTON CROSS FARM\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 169766,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 492,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ125\",\n                        \"pjhl_description\": \"(XW5) KOMATSU PC228USLC-11 ZERO EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 276,\n                \"pjh_contractnumber\": \"PH84452\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13046,\n                \"pjc_name\": \"TILHILL FORESTRY LIMITED T148\",\n                \"pjs_id\": 117828,\n                \"pjs_name\": \"OCKHAM- KT11\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169801,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 493,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"XDTRUCK12\",\n                        \"pjhl_description\": \"12 Tonne Dump Truck - Hydrema\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 277,\n                \"pjh_contractnumber\": \"WSD44253\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117548,\n                \"pjs_name\": \"LITCHFIELD ROAD\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169809,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 494,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15LR\",\n                        \"pjhl_stockno\": \"EX15TLR11\",\n                        \"pjhl_description\": \"CAT313GC  (LONG REACH 12M) EXCAVATOR 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 278,\n                \"pjh_contractnumber\": \"WSD44254\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12130,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED K068\",\n                \"pjs_id\": 117719,\n                \"pjs_name\": \"LEYLAND STATION COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169812,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 495,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH4\",\n                        \"pjhl_stockno\": \"TH4M34\",\n                        \"pjhl_description\": \"4 MTR JCB 520-40 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 279,\n                \"pjh_contractnumber\": \"SDW86527\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117850,\n                \"pjs_name\": \"UPPER FROYLE\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169819,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 496,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RTEETH\",\n                        \"pjhl_stockno\": \"RT03\",\n                        \"pjhl_description\": \"RIPPER TOOTH - 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 280,\n                \"pjh_contractnumber\": \"WSD44255\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117658,\n                \"pjs_name\": \"RIVER NOE\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169824,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 497,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T15\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 281,\n                \"pjh_contractnumber\": \"WPH43803\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11033,\n                \"pjc_name\": \"VOLKER RAIL LIMITED V031\",\n                \"pjs_id\": 117853,\n                \"pjs_name\": \"ASSOCIATED BRITISH PORTS,\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 169829,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 498,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ82\",\n                        \"pjhl_description\": \"25 TONNE CAT325FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 499,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB22\",\n                        \"pjhl_description\": \"RUBBER TRACK 22 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 282,\n                \"pjh_contractnumber\": \"WPH43804\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117658,\n                \"pjs_name\": \"RIVER NOE\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169833,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 500,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15LR\",\n                        \"pjhl_stockno\": \"EX15TLR02\",\n                        \"pjhl_description\": \"CX130BLR CASE (LONG REACH) EXCAVATOR 13T\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 501,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 502,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL - TO BE ADVISED AT TIME OF HIRE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 283,\n                \"pjh_contractnumber\": \"WPH43805\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12130,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED K068\",\n                \"pjs_id\": 117720,\n                \"pjs_name\": \"LODGE LANE\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169835,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 503,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ219\",\n                        \"pjhl_description\": \"PC138US-11 KOMATSU EXCAVATOR SHORT TAIL SWING\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 504,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 505,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"RWHEEL\",\n                        \"pjhl_stockno\": \"XRWHEEL\",\n                        \"pjhl_description\": \"Rock Wheel\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 506,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT\",\n                        \"pjhl_description\": \"HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 507,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW\",\n                        \"pjhl_description\": \"SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 284,\n                \"pjh_contractnumber\": \"WPH43806\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117639,\n                \"pjs_name\": \"OLD POST LANE\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169838,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 508,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T305\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION TRIMBLE EARTHWORKS  READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 509,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 285,\n                \"pjh_contractnumber\": \"WSD44262\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11126,\n                \"pjc_name\": \"COLEMAN & COMPANY LIMITED C203\",\n                \"pjs_id\": 117614,\n                \"pjs_name\": \"UNIVERSTY OF BIRMINGHAM\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169840,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 510,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T84\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 286,\n                \"pjh_contractnumber\": \"WPH43807\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117639,\n                \"pjs_name\": \"OLD POST LANE\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169844,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 511,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T131\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313F EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 512,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 287,\n                \"pjh_contractnumber\": \"WPH43809\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117639,\n                \"pjs_name\": \"OLD POST LANE\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169848,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 513,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM9\",\n                        \"pjhl_stockno\": \"DU9T33\",\n                        \"pjhl_description\": \"DW90 WACKER NEUSON STRAIGHT DUMPER 9 TONNE\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 288,\n                \"pjh_contractnumber\": \"WPH43810\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117639,\n                \"pjs_name\": \"OLD POST LANE\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169849,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 514,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM9\",\n                        \"pjhl_stockno\": \"DU9T62\",\n                        \"pjhl_description\": \"TA9000 MECALEC 9 TONNE STRAIGHT DUMPER\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 289,\n                \"pjh_contractnumber\": \"WSD44264\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117584,\n                \"pjs_name\": \"NETWORK RAIL DEPOT\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169850,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 515,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M81\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 540/140 HI -VIS Low Emission\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 290,\n                \"pjh_contractnumber\": \"WPH43811\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12536,\n                \"pjc_name\": \"COSTAIN LIMITED (PRESTON) C266\",\n                \"pjs_id\": 117625,\n                \"pjs_name\": \"TRAFFIC MANAGENT\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169851,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 516,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T209\",\n                        \"pjhl_description\": \"(XW4) 9T LOW EMMISSION EXCAVATOR CAT308-06A\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 291,\n                \"pjh_contractnumber\": \"WSD44269\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 117835,\n                \"pjs_name\": \"TX35 PIPE LINE -CHORLTON\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169862,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 517,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T103\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336-07 TRIMBLE EARTHWORKS READY EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 292,\n                \"pjh_contractnumber\": \"NSD8480\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13468,\n                \"pjc_name\": \"GD ENVIRONMENTAL SERVICES LTD G185\",\n                \"pjs_id\": 117664,\n                \"pjs_name\": \"NEWPORT - NP19 4SU\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169863,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 518,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T94\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313F EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 519,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRAPPLE3\",\n                        \"pjhl_stockno\": \"GRAP04\",\n                        \"pjhl_description\": \"GRAPPLE 13 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 520,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GRAPPLE3\",\n                        \"pjhl_stockno\": \"GRAP04\",\n                        \"pjhl_description\": \"GRAPPLE 13 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 293,\n                \"pjh_contractnumber\": \"NSD8481\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13468,\n                \"pjc_name\": \"GD ENVIRONMENTAL SERVICES LTD G185\",\n                \"pjs_id\": 117664,\n                \"pjs_name\": \"NEWPORT - NP19 4SU\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 169865,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 521,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ91\",\n                        \"pjhl_description\": \"25 TONNE CAT325-07 EXCAVATOR ZERO TAIL 3D EARTHWORK BASE UNIT READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 522,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB67\",\n                        \"pjhl_description\": \"S1102 SELECTOR GRAB 13/20 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 523,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HSHEARS\",\n                        \"pjhl_stockno\": \"SHEAR07\",\n                        \"pjhl_description\": \"VTN EUROPE 20/20 TON CI200 SHEARS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 294,\n                \"pjh_contractnumber\": \"WSD44271\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10997,\n                \"pjc_name\": \"SPEEDY ASSET SERVICES S183\",\n                \"pjs_id\": 117811,\n                \"pjs_name\": \"C/O WOODBRIDGE CIVIL ENG\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169867,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 524,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T42\",\n                        \"pjhl_description\": \"14 TONNE HITACHI ZX145W-6 RUBBER DUCK 2 Piece Boom\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 525,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR387\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO BREAKER 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 295,\n                \"pjh_contractnumber\": \"WSD44275\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10997,\n                \"pjc_name\": \"SPEEDY ASSET SERVICES S183\",\n                \"pjs_id\": 117812,\n                \"pjs_name\": \"ELSHAM\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169881,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 526,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T79\",\n                        \"pjhl_description\": \"3 TONNE HITACHI ZX26U-5A EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 527,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW4\",\n                        \"pjhl_description\": \"SUMMIT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 528,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 529,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"AUGER\",\n                        \"pjhl_stockno\": \"XAUGER\",\n                        \"pjhl_description\": \"3T Auger\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 296,\n                \"pjh_contractnumber\": \"WPH43816\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13354,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S122\",\n                \"pjs_id\": 117701,\n                \"pjs_name\": \"KEX GILL\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 169888,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 530,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T110\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 297,\n                \"pjh_contractnumber\": \"WPH43817\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13354,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S122\",\n                \"pjs_id\": 117701,\n                \"pjs_name\": \"KEX GILL\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169889,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 531,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T104\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 298,\n                \"pjh_contractnumber\": \"PH84470\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117629,\n                \"pjs_name\": \"ETTON COMPOUND\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169910,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 532,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T106\",\n                        \"pjhl_description\": \"14 TONNE VOLVO EWR130E RUBBER DUCK 2 PIECE BOOM\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 533,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"EA004\",\n                        \"pjhl_description\": \"MS2500SG REED CUTTING BUCKET 2.5 meter\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 299,\n                \"pjh_contractnumber\": \"PH84472\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117631,\n                \"pjs_name\": \"ETTON COMPOUND- PE6\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169924,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 534,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T109\",\n                        \"pjhl_description\": \"14 TONNE VOLVO EWR130E RUBBER DUCK 2 PIECE BOOM\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 535,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"XBUCKOTH\",\n                        \"pjhl_description\": \"REED CUTTING BUCKET (XHIRED)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 300,\n                \"pjh_contractnumber\": \"PH84471\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117631,\n                \"pjs_name\": \"ETTON COMPOUND- PE6\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169926,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 536,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T90\",\n                        \"pjhl_description\": \"14 TONNE VOLVO EWR130E RUBBER DUCK 2 PIECE BOOM\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 537,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"XBUCKOTH\",\n                        \"pjhl_description\": \"REED CUTTING BUCKET\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 301,\n                \"pjh_contractnumber\": \"PH84467\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 117654,\n                \"pjs_name\": \"SAILSBURY - SP1\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 169930,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 538,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T135\",\n                        \"pjhl_description\": \"5 TONNE CAT305E2 CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 302,\n                \"pjh_contractnumber\": \"PH84468\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 117654,\n                \"pjs_name\": \"SAILSBURY - SP1\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 169931,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 539,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T192\",\n                        \"pjhl_description\": \"(H/D) 5 TONNE CAT305 07A CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 303,\n                \"pjh_contractnumber\": \"WPH43825\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 117711,\n                \"pjs_name\": \"MARSH FARM VIADUCT - ACCESS GATE N11 G47\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169932,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 540,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ161\",\n                        \"pjhl_description\": \"CAT315-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 541,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 542,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"360CAMERA1\",\n                        \"pjhl_description\": \"CAMERA 360 RECORDING\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 304,\n                \"pjh_contractnumber\": \"WSD44282\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117768,\n                \"pjs_name\": \"MANSTON COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169934,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 543,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T50\",\n                        \"pjhl_description\": \"BW120AD-5 BOMAG ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 305,\n                \"pjh_contractnumber\": \"NSD8483\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12145,\n                \"pjc_name\": \"BARRIER SERVICES LIMITED B194\",\n                \"pjs_id\": 117597,\n                \"pjs_name\": \"BRISTOL - BS10 7TG\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 169938,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 544,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T207\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-06A\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 545,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"AUGER\",\n                        \"pjhl_stockno\": \"A072\",\n                        \"pjhl_description\": \"AUGER TORGUE 7,000 MAX (5.0T - 7.0T)   DRIVE UNIT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 546,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"XGRABSEL\",\n                        \"pjhl_description\": \"9TON SELECTOR GRAB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 306,\n                \"pjh_contractnumber\": \"WSD44283\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10539,\n                \"pjc_name\": \"BARHALE LIMITED 438\",\n                \"pjs_id\": 117595,\n                \"pjs_name\": \"GRASSINGTON STW.\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 169940,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 547,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH4\",\n                        \"pjhl_stockno\": \"TH4M26\",\n                        \"pjhl_description\": \"4 MTR JCB 520-40 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 307,\n                \"pjh_contractnumber\": \"SDW86551\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13137,\n                \"pjc_name\": \"TILBURY DOUGLAS CONST LTD T153\",\n                \"pjs_id\": 117827,\n                \"pjs_name\": \"FARRINGDON - SN7\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169943,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 548,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH6\",\n                        \"pjhl_stockno\": \"TH6M12\",\n                        \"pjhl_description\": \"6 METER  JCB 525/60 Telehandler\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 549,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"FORKEX\",\n                        \"pjhl_stockno\": \"FE161\",\n                        \"pjhl_description\": \"120X50X1800MM FORK EXTENSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 308,\n                \"pjh_contractnumber\": \"WPH43829\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13028,\n                \"pjc_name\": \"BAM NUTTALL LTD (BAA.2080) B235\",\n                \"pjs_id\": 117567,\n                \"pjs_name\": \"BAM\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169946,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 550,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC1.5\",\n                        \"pjhl_stockno\": \"EX2T37\",\n                        \"pjhl_description\": \"1.5 TONNE CAT 301.5 EXCAVATOR C/w Quick Hitch\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 309,\n                \"pjh_contractnumber\": \"NPH4467\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117748,\n                \"pjs_name\": \"CARDIFF - CF14 2FP\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169959,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 551,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T126\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 310,\n                \"pjh_contractnumber\": \"WPH43833\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11599,\n                \"pjc_name\": \"KELTBRAY RAIL LTD     T/A K017\",\n                \"pjs_id\": 117713,\n                \"pjs_name\": \"TOWTHORPE RD\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 169970,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 552,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T148\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 311,\n                \"pjh_contractnumber\": \"WSD44295\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13332,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION (A B271\",\n                \"pjs_id\": 117537,\n                \"pjs_name\": \"A63 CASTLE STREET PROJECT\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169974,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 553,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC80\",\n                        \"pjhl_stockno\": \"EX80T09\",\n                        \"pjhl_description\": \"CAT374-07 CATERPILLAR EXCAVATOR  3D EARTHWORKS READY  DIGGING\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 554,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"360CAMERA1\",\n                        \"pjhl_description\": \"CAMERA 360 RECORDING\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 312,\n                \"pjh_contractnumber\": \"WSD44294\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10574,\n                \"pjc_name\": \"SUNBELT RENTALS LTD (EA) A043\",\n                \"pjs_id\": 117821,\n                \"pjs_name\": \"EA SITE.\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169975,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 555,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"GRABS\",\n                        \"pjhl_stockno\": \"XGRABS\",\n                        \"pjhl_description\": \"POST KNOCKER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 313,\n                \"pjh_contractnumber\": \"WSD44297\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11745,\n                \"pjc_name\": \"APPROVED POWER SERVICES LTD A031\",\n                \"pjs_id\": 117522,\n                \"pjs_name\": \"TEMPLEBOROUGH SUB STATION\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169988,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 556,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T87\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 314,\n                \"pjh_contractnumber\": \"SDW86557\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 117655,\n                \"pjs_name\": \"EPSOM - KT19\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 169991,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 557,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKSHA\",\n                        \"pjhl_stockno\": \"BSHA88\",\n                        \"pjhl_description\": \"SHAKER 20 TONNE - strickland\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 315,\n                \"pjh_contractnumber\": \"SDW86558\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117925,\n                \"pjs_name\": \"COT- WESTLETON\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169994,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 558,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6T37\",\n                        \"pjhl_description\": \"D6 LGP(30) VPAT -20 FOLDING BLADE 3D INTEGRATED GPS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 559,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 316,\n                \"pjh_contractnumber\": \"PH84493\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117670,\n                \"pjs_name\": \"A47 - WATERLOW ROAD\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170003,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 560,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T205\",\n                        \"pjhl_description\": \"VOLVO A30G DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 317,\n                \"pjh_contractnumber\": \"PH84494\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117670,\n                \"pjs_name\": \"A47 - WATERLOW ROAD\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170004,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 561,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ131\",\n                        \"pjhl_description\": \"(XW5) KOMATSU PC228USLC-11 ZERO EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 318,\n                \"pjh_contractnumber\": \"WSD44300\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13288,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0060) B265\",\n                \"pjs_id\": 117575,\n                \"pjs_name\": \"COUNTESS STREET\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170007,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 562,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"AUGER\",\n                        \"pjhl_stockno\": \"A080\",\n                        \"pjhl_description\": \"AUGER TORGUE 15,000 MAX ( 15.0T\\\\20T )   DRIVE UNIT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 563,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"AUGACC\",\n                        \"pjhl_stockno\": \"X\",\n                        \"pjhl_description\": \"1m drive extension\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 319,\n                \"pjh_contractnumber\": \"WPH43836\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11033,\n                \"pjc_name\": \"VOLKER RAIL LIMITED V031\",\n                \"pjs_id\": 117938,\n                \"pjs_name\": \"ASSOCIATED BRITISH PORTS.\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 170008,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 564,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK25\",\n                        \"pjhl_stockno\": \"DT25T33\",\n                        \"pjhl_description\": \"25 TONNE DUMP TRUCK CAT 725-04\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 565,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 320,\n                \"pjh_contractnumber\": \"WSD44306\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10822,\n                \"pjc_name\": \"KIER INTEGRATED SERVICES LT K060\",\n                \"pjs_id\": 117715,\n                \"pjs_name\": \"COLNE BARROWFORD RESERVOIR\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170020,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 566,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ5K04\",\n                        \"pjhl_description\": \"Dozer D5K LGP CATERPILLAR Low Emission\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 567,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"360CAMERA1\",\n                        \"pjhl_description\": \"CAMERA 360 RECORDING\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 568,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 321,\n                \"pjh_contractnumber\": \"WSD44307\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10574,\n                \"pjc_name\": \"SUNBELT RENTALS LTD (EA) A043\",\n                \"pjs_id\": 117916,\n                \"pjs_name\": \"EA DEPOT LEA MARSTON\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170022,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 569,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T216\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 570,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 322,\n                \"pjh_contractnumber\": \"WPH43839\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12583,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S120\",\n                \"pjs_id\": 117699,\n                \"pjs_name\": \"M6 J10\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170024,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 571,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15LR\",\n                        \"pjhl_stockno\": \"EX15TLR09\",\n                        \"pjhl_description\": \"CAT313GC (XW5) (LONG REACH 12M) EXCAVATOR 13T\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 572,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 323,\n                \"pjh_contractnumber\": \"WSD44313\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117865,\n                \"pjs_name\": \"WOODCOCK FOLD\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170033,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 573,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK121\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR C/w FRONT LINKAGE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 324,\n                \"pjh_contractnumber\": \"SDW86564\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11324,\n                \"pjc_name\": \"ACS CONSTRUCTION GROUP LTD A010\",\n                \"pjs_id\": 117503,\n                \"pjs_name\": \"WANTAGE - OX12 7GQ\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170035,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 574,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ104\",\n                        \"pjhl_description\": \"25 TONNE CAT325-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 575,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSBIEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS BASE INSTALL KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 325,\n                \"pjh_contractnumber\": \"PH84506\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170039,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 576,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 577,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC40TLR\",\n                        \"pjhl_stockno\": \"EX40T41\",\n                        \"pjhl_description\": \"CAT 336F 40 TONNE 20M LONG REACH EXCAVATOR 20T HITCH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 578,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 326,\n                \"pjh_contractnumber\": \"WSD44321\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117511,\n                \"pjs_name\": \"FFORD BRONWYDD\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170049,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 579,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T33\",\n                        \"pjhl_description\": \"5 TONNE HITACHI ZX55U-5A  EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 327,\n                \"pjh_contractnumber\": \"NSD8488\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10708,\n                \"pjc_name\": \"M & A DOOCEY CIVIL ENGINEERING D091\",\n                \"pjs_id\": 117727,\n                \"pjs_name\": \"GLOUCESTER - GL4 6YG\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170051,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 580,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM3S\",\n                        \"pjhl_stockno\": \"DU2TS02\",\n                        \"pjhl_description\": \"1.5T SWIVEL DUMPER WACKER NEUSON 1501\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 328,\n                \"pjh_contractnumber\": \"WSD44322\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117562,\n                \"pjs_name\": \"SALTLEY PROJECT\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170052,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 581,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"MULCHER\",\n                        \"pjhl_stockno\": \"EA013\",\n                        \"pjhl_description\": \"TFS-UX130 MULCHER (20T)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 329,\n                \"pjh_contractnumber\": \"NSD8490\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10708,\n                \"pjc_name\": \"M & A DOOCEY CIVIL ENGINEERING D091\",\n                \"pjs_id\": 117728,\n                \"pjs_name\": \"WOODCHESTER - GL5 5EL\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170054,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 582,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T122\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 583,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR759\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 330,\n                \"pjh_contractnumber\": \"NSD8491\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10708,\n                \"pjc_name\": \"M & A DOOCEY CIVIL ENGINEERING D091\",\n                \"pjs_id\": 117728,\n                \"pjs_name\": \"WOODCHESTER - GL5 5EL\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170055,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 584,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM3S\",\n                        \"pjhl_stockno\": \"DU3TS22\",\n                        \"pjhl_description\": \"3 TONNE SWIVEL DUMPER MECALAC TA3SH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 585,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 331,\n                \"pjh_contractnumber\": \"WSD44323\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117657,\n                \"pjs_name\": \"BONNER LANE\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170056,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 586,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T185\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 332,\n                \"pjh_contractnumber\": \"WPH43838\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117511,\n                \"pjs_name\": \"FFORD BRONWYDD\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170061,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 587,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T309\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320-07 3D TRIMBLE READY EARTHWORKS EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 333,\n                \"pjh_contractnumber\": \"WSD44324\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12871,\n                \"pjc_name\": \"OPERATOR SKILLS HUB B222\",\n                \"pjs_id\": 117776,\n                \"pjs_name\": \"KINGSBURY ROAD MAIN COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170063,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 588,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ104\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 589,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"REMOTE\",\n                        \"pjhl_description\": \"REMOTE - HYDRAULIC CUT OUT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 334,\n                \"pjh_contractnumber\": \"WSD44325\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12871,\n                \"pjc_name\": \"OPERATOR SKILLS HUB B222\",\n                \"pjs_id\": 117776,\n                \"pjs_name\": \"KINGSBURY ROAD MAIN COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170064,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 590,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ188\",\n                        \"pjhl_description\": \"CAT315-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 591,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"REMOTE\",\n                        \"pjhl_description\": \"REMOTE - HYDRAULIC CUT OUT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 335,\n                \"pjh_contractnumber\": \"WPH43840\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12961,\n                \"pjc_name\": \"SB3 JOINT VENTURE S232\",\n                \"pjs_id\": 117800,\n                \"pjs_name\": \"ATTLEBORO LANE OVERBRIDGE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170066,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 592,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T19\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 336,\n                \"pjh_contractnumber\": \"WSD44327\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11769,\n                \"pjc_name\": \"O'CONNOR UTILITIES LIMITED O060\",\n                \"pjs_id\": 117774,\n                \"pjs_name\": \"HARGATEHILL EQUESTRIAN CENTRE\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170067,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 593,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK9\",\n                        \"pjhl_stockno\": \"RD9T51\",\n                        \"pjhl_description\": \"EW100 WACKER NEUSON 10T WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 337,\n                \"pjh_contractnumber\": \"WSD44328\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11029,\n                \"pjc_name\": \"VIBRO MENARD LIMITED V027\",\n                \"pjs_id\": 117842,\n                \"pjs_name\": \"VIBRO MENARD YARD\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170068,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 594,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T174\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 338,\n                \"pjh_contractnumber\": \"WSD44329\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12054,\n                \"pjc_name\": \"BARHALE CONSTRUCTION SERVICES B104\",\n                \"pjs_id\": 117590,\n                \"pjs_name\": \"BARHALE COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170069,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 595,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE202\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 13t/20T\\r\\nCONQUIP 13/21 TONNE EXCAVATOR FORKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 339,\n                \"pjh_contractnumber\": \"WSD44331\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117512,\n                \"pjs_name\": \"WHITE COTTAGE CAR CENTRE\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170071,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 596,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M21\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 535/140 HI -VIS Low Emission\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 340,\n                \"pjh_contractnumber\": \"SDW86570\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10558,\n                \"pjc_name\": \"LAND & WATER SERVICES LTD 866\",\n                \"pjs_id\": 117722,\n                \"pjs_name\": \"KING GEORGE V DOCK - E16\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170072,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 597,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH9\",\n                        \"pjhl_stockno\": \"TH9M23\",\n                        \"pjhl_description\": \"9 MTR JCB 535/95 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 598,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"FMHOOK\",\n                        \"pjhl_stockno\": \"LH103\",\n                        \"pjhl_description\": \"LIFTING HOOK 5 TONNE TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 341,\n                \"pjh_contractnumber\": \"SDW86571\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11781,\n                \"pjc_name\": \"GALLIFORD TRY INFRASTRUCTURE G100\",\n                \"pjs_id\": 117662,\n                \"pjs_name\": \"WANTAGE- OX12\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170073,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 599,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS52\",\n                        \"pjhl_description\": \"TA6000SH MECALAC 6 TONNE SWIVEL DUMPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 342,\n                \"pjh_contractnumber\": \"SDW86572\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11620,\n                \"pjc_name\": \"RK AIR LIMITED R112\",\n                \"pjs_id\": 117796,\n                \"pjs_name\": \"CAMBOURNE CRESCENT -TW6\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170074,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 600,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH4\",\n                        \"pjhl_stockno\": \"TH4M06\",\n                        \"pjhl_description\": \"4 MTR JCB 516-40 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 601,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 343,\n                \"pjh_contractnumber\": \"SDW86574\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117529,\n                \"pjs_name\": \"NEWPORT PAGNELL- MK16\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170075,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 602,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T35\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 603,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 344,\n                \"pjh_contractnumber\": \"SDW86575\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117529,\n                \"pjs_name\": \"NEWPORT PAGNELL- MK16\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170076,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 604,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9S\",\n                        \"pjhl_stockno\": \"DVD9TS95\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 605,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 345,\n                \"pjh_contractnumber\": \"SDW86577\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117529,\n                \"pjs_name\": \"NEWPORT PAGNELL- MK16\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170078,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 606,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T283\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 607,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 608,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 609,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 610,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW\",\n                        \"pjhl_description\": \"SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 611,\n                        \"pjhl_seq\": 6,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT\",\n                        \"pjhl_description\": \"HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 346,\n                \"pjh_contractnumber\": \"PH84511\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13374,\n                \"pjc_name\": \"BALFOUR BEATTY GROUP LTD (M25) B273\",\n                \"pjs_id\": 117545,\n                \"pjs_name\": \"M25 CENTRAL RESERVATION\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170080,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 612,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 613,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ212\",\n                        \"pjhl_description\": \"PC138US-11 KOMATSU EXCAVATOR SHORT TAIL SWING\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 614,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW2\",\n                        \"pjhl_description\": \"X WATCH SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 615,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT2\",\n                        \"pjhl_description\": \"X WATCH HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 616,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 617,\n                        \"pjhl_seq\": 6,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 618,\n                        \"pjhl_seq\": 7,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 619,\n                        \"pjhl_seq\": 8,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSBIEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS BASE INSTALL KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 347,\n                \"pjh_contractnumber\": \"PH84512\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12496,\n                \"pjc_name\": \"SCS JV S135\",\n                \"pjs_id\": 117803,\n                \"pjs_name\": \"EUSTON - HAMPSTEAD ROAD\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170081,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 620,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T298\",\n                        \"pjhl_description\": \"EZ80 VDS WACKER NEUSON ZERO TAIL EXCAVATOR(BANDED TRACKS)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 621,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT4\",\n                        \"pjhl_description\": \"SUMMIT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:33:59\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 348,\n                \"pjh_contractnumber\": \"SDW86579\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13422,\n                \"pjc_name\": \"VOLKERFITZPATRICK LTD V060\",\n                \"pjs_id\": 117858,\n                \"pjs_name\": \"ALDERSHOT - GU12\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170092,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 622,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKSHA\",\n                        \"pjhl_stockno\": \"BSHA52\",\n                        \"pjhl_description\": \"SHAKER BUCKET 20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 349,\n                \"pjh_contractnumber\": \"WPH43841\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13207,\n                \"pjc_name\": \"HSS PROSERVICE LTD H160\",\n                \"pjs_id\": 117683,\n                \"pjs_name\": \"AVOVE LIMITED,\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170093,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 623,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T137\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 2D DIGGING\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 350,\n                \"pjh_contractnumber\": \"WPH43842\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13417,\n                \"pjc_name\": \"HML UK CONSTRUCTION LTD H164\",\n                \"pjs_id\": 117677,\n                \"pjs_name\": \"HML UK,\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170095,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 624,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T87\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 351,\n                \"pjh_contractnumber\": \"WPH43843\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13417,\n                \"pjc_name\": \"HML UK CONSTRUCTION LTD H164\",\n                \"pjs_id\": 117677,\n                \"pjs_name\": \"HML UK,\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170096,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 625,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T161\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 352,\n                \"pjh_contractnumber\": \"SDW86569\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13198,\n                \"pjc_name\": \"STORY PLANT LIMITED S258\",\n                \"pjs_id\": 117815,\n                \"pjs_name\": \"AYLESBURY - HP22\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170098,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 626,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T56\",\n                        \"pjhl_description\": \"BW120AD-5 BOMAG ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 353,\n                \"pjh_contractnumber\": \"SDW86580\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11698,\n                \"pjc_name\": \"FLO JV F090\",\n                \"pjs_id\": 117656,\n                \"pjs_name\": \"ALBERT EMBANKMENT - SE1\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170101,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 627,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T85\",\n                        \"pjhl_description\": \"5 TONNE E45 BOBCAT EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 628,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR777\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 354,\n                \"pjh_contractnumber\": \"WPH43846\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10936,\n                \"pjc_name\": \"EUROVIA INFRASTRUCTURE SER R073\",\n                \"pjs_id\": 117648,\n                \"pjs_name\": \"IPORT IND EST\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170105,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 629,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N20\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 355,\n                \"pjh_contractnumber\": \"SDW86584\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13312,\n                \"pjc_name\": \"M & M CONTRACTORS (EUROPE) LTD M286\",\n                \"pjs_id\": 117733,\n                \"pjs_name\": \"TAMERIN GARDENS - CB1\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170107,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 630,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS51\",\n                        \"pjhl_description\": \"6 TONNE DUMPER P/SWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 631,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 356,\n                \"pjh_contractnumber\": \"SDW86583\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13312,\n                \"pjc_name\": \"M & M CONTRACTORS (EUROPE) LTD M286\",\n                \"pjs_id\": 117734,\n                \"pjs_name\": \"NIGHTINGALE AVE- CB1\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170109,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 632,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS33\",\n                        \"pjhl_description\": \"6 TONNE DUMPER P/SWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 633,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 357,\n                \"pjh_contractnumber\": \"SDW86582\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13312,\n                \"pjc_name\": \"M & M CONTRACTORS (EUROPE) LTD M286\",\n                \"pjs_id\": 117732,\n                \"pjs_name\": \"COLDHAMS AVE - CB1 3HS\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170110,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 634,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS32\",\n                        \"pjhl_description\": \"6 TONNE DUMPER P/SWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 635,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 358,\n                \"pjh_contractnumber\": \"WPH43847\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117658,\n                \"pjs_name\": \"RIVER NOE\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170111,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 636,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T179\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 359,\n                \"pjh_contractnumber\": \"PH84522\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117671,\n                \"pjs_name\": \"HONINGHAM - NR9\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170112,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 637,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T246\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 HEX EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 360,\n                \"pjh_contractnumber\": \"PH84523\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117671,\n                \"pjs_name\": \"HONINGHAM - NR9\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170113,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 638,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T18\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 361,\n                \"pjh_contractnumber\": \"SDW86586\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117685,\n                \"pjs_name\": \"BERKHAMSTED - HP4\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170114,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 639,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ140\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 362,\n                \"pjh_contractnumber\": \"WPH43848\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12288,\n                \"pjc_name\": \"COSTAIN LIMITED (M6) C109\",\n                \"pjs_id\": 117619,\n                \"pjs_name\": \"NEWTON LE WILOWS\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170116,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 640,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK18\",\n                        \"pjhl_stockno\": \"RDUCK18-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 18 Tonne Rubber Duck\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 363,\n                \"pjh_contractnumber\": \"NPH4470\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12705,\n                \"pjc_name\": \"BAM NUTTALL LTD (BBN.0560) B126\",\n                \"pjs_id\": 117570,\n                \"pjs_name\": \"KINGS WESTERN - AVONMOUTH - BS11 0YA\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170120,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 641,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T135\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313F EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 364,\n                \"pjh_contractnumber\": \"WPH43851\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12844,\n                \"pjc_name\": \"JOHN SISK & SONS (HOLDINGS) LI S115\",\n                \"pjs_id\": 117703,\n                \"pjs_name\": \"WATERS END\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170121,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 642,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T103\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D Excavator\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 365,\n                \"pjh_contractnumber\": \"PH84524\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12496,\n                \"pjc_name\": \"SCS JV S135\",\n                \"pjs_id\": 117802,\n                \"pjs_name\": \"LONDON - NW3\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170124,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 643,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 644,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC40TC\",\n                        \"pjhl_stockno\": \"EX40T116\",\n                        \"pjhl_description\": \"HB365LC-3 40T Komatsu Excavator(Hybrid)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 645,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"360CAMERA1\",\n                        \"pjhl_description\": \"CAMERA 360 RECORDING\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 646,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"BREXTORS\",\n                        \"pjhl_stockno\": \"DU250-2-02\",\n                        \"pjhl_description\": \"BREXTOR DRIVER BRC250-2\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 366,\n                \"pjh_contractnumber\": \"WSD44334\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12130,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED K068\",\n                \"pjs_id\": 117720,\n                \"pjs_name\": \"LODGE LANE\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170130,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 647,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"PILECROP\",\n                        \"pjhl_stockno\": \"XPILECROP\",\n                        \"pjhl_description\": \"PILE SCRAPER 15T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 367,\n                \"pjh_contractnumber\": \"WSD44335\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 117836,\n                \"pjs_name\": \"CADENT GAS YARD\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170131,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 648,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH9\",\n                        \"pjhl_stockno\": \"TH9M33\",\n                        \"pjhl_description\": \"9 MTR JCB 535/95 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 649,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"FMHOOK\",\n                        \"pjhl_stockno\": \"LH34\",\n                        \"pjhl_description\": \"TELEHANDLER LIFTING HOOK 4.0 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 368,\n                \"pjh_contractnumber\": \"SDW86593\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13222,\n                \"pjc_name\": \"HESSELBERG HYDRO (UK) LTD H161\",\n                \"pjs_id\": 117675,\n                \"pjs_name\": \"CANVEY - SS8\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170132,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 650,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T300\",\n                        \"pjhl_description\": \"EZ80 VDS WACKER NEUSON ZERO TAIL EXCAVATOR(BANDED TRACKS)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 651,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKTIL\",\n                        \"pjhl_stockno\": \"BKT02\",\n                        \"pjhl_description\": \"TILTING DITCHING BUCKET 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 369,\n                \"pjh_contractnumber\": \"PH84530\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 117753,\n                \"pjs_name\": \"GOOSE GREEN\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170134,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 652,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK117\",\n                        \"pjhl_description\": \"JOHN DEERE 6100M TRACTOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 370,\n                \"pjh_contractnumber\": \"WPH43856\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 117838,\n                \"pjs_name\": \"TX35 PIPELINE DIVERSION,\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170135,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 653,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N47\",\n                        \"pjhl_description\": \"Dozer  D61PXI-24 KOMATSU INTERGRATED 3D VPAT FOLDING BLADE\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 371,\n                \"pjh_contractnumber\": \"SDW86587\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117519,\n                \"pjs_name\": \"EUROSTAR TEMPLE MILLS DEPOT - E10\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170137,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 654,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR931\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 372,\n                \"pjh_contractnumber\": \"SDW86589\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117689,\n                \"pjs_name\": \"MATCHING GREEN DEPOT- CM17\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170139,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 655,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T114\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 373,\n                \"pjh_contractnumber\": \"WSD44337\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 117837,\n                \"pjs_name\": \"SHUSTOKE\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170140,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 656,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T191\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 657,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 658,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE75\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 13T/20T 2000KG\\r\\nCONQUIP 13/21 TONNE EXCAVATOR FORKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 374,\n                \"pjh_contractnumber\": \"SDW86590\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10653,\n                \"pjc_name\": \"CONNEELY CONSTRUCTION LIMITED C164\",\n                \"pjs_id\": 117617,\n                \"pjs_name\": \"HIGHGATE - N19\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170141,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 659,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC1.5\",\n                        \"pjhl_stockno\": \"EX2T43\",\n                        \"pjhl_description\": \"1.5 TONNE CAT 301.5 EXCAVATOR C/w Quick Hitch\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 660,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR1.5\",\n                        \"pjhl_stockno\": \"BR641\",\n                        \"pjhl_description\": \"SB102 ATLAS COPCO 1.5 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 375,\n                \"pjh_contractnumber\": \"SDW86591\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117685,\n                \"pjs_name\": \"BERKHAMSTED - HP4\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170142,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 661,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKSHA\",\n                        \"pjhl_stockno\": \"BSHA49\",\n                        \"pjhl_description\": \"SHAKER BUCKET 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 376,\n                \"pjh_contractnumber\": \"WSD44338\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117639,\n                \"pjs_name\": \"OLD POST LANE\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170143,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 662,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM9\",\n                        \"pjhl_stockno\": \"DU9T11\",\n                        \"pjhl_description\": \"TA9 TERREX STRAIGHT DUMPER 9 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 377,\n                \"pjh_contractnumber\": \"SDW86594\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10539,\n                \"pjc_name\": \"BARHALE LIMITED 438\",\n                \"pjs_id\": 117594,\n                \"pjs_name\": \"SWINDON - SN25\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170144,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 663,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"GRABS\",\n                        \"pjhl_stockno\": \"GRAB46\",\n                        \"pjhl_description\": \"20T ARDEN BA403 GRAB WITH ROTATION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 664,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PGRAB\",\n                        \"pjhl_stockno\": \"PG002\",\n                        \"pjhl_description\": \"POLE GRAB EXTENSION 2 METER C/W BOLTS AND NUTS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 378,\n                \"pjh_contractnumber\": \"SDW86595\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12305,\n                \"pjc_name\": \"J&J PALMER GROUNDWORKS LTD J088\",\n                \"pjs_id\": 117692,\n                \"pjs_name\": \"CORBY - NN17\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170146,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 665,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9S\",\n                        \"pjhl_stockno\": \"DVD9TS27\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 379,\n                \"pjh_contractnumber\": \"WPH43857\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13417,\n                \"pjc_name\": \"HML UK CONSTRUCTION LTD H164\",\n                \"pjs_id\": 117677,\n                \"pjs_name\": \"HML UK,\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170147,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 666,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T94\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 380,\n                \"pjh_contractnumber\": \"SDW86596\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12443,\n                \"pjc_name\": \"MILES MACADAM LIMITED M103\",\n                \"pjs_id\": 117744,\n                \"pjs_name\": \"COT -\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170150,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 667,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BACKH\",\n                        \"pjhl_stockno\": \"3CX25\",\n                        \"pjhl_description\": \"JCB 3CX BACKHOE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 381,\n                \"pjh_contractnumber\": \"WSD44339\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11510,\n                \"pjc_name\": \"ALLIED INFRASTRUCTURE MGT A014\",\n                \"pjs_id\": 117505,\n                \"pjs_name\": \"OLYMPIC HOUSE\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170152,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 668,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T39\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 382,\n                \"pjh_contractnumber\": \"NSD8497\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13364,\n                \"pjc_name\": \"UK REMEDIATION LTD U066\",\n                \"pjs_id\": 117833,\n                \"pjs_name\": \"NEWPORT - NP19 4RQ\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170155,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 669,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T162\",\n                        \"pjhl_description\": \"JCB140X EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 383,\n                \"pjh_contractnumber\": \"SDW86597\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12429,\n                \"pjc_name\": \"LARC CONSTRUCTION LTD L106\",\n                \"pjs_id\": 117726,\n                \"pjs_name\": \"ROYAL MILITARY CAMPUS\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170156,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 670,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ194\",\n                        \"pjhl_description\": \"CAT315-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 384,\n                \"pjh_contractnumber\": \"SDW86598\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11840,\n                \"pjc_name\": \"JRL PLANT AND LOGISTICS LTD J032\",\n                \"pjs_id\": 117707,\n                \"pjs_name\": \"POPLAR -E14\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170160,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 671,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T81\",\n                        \"pjhl_description\": \"BW120AD-5 BOMAG ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 385,\n                \"pjh_contractnumber\": \"PH84533\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 117757,\n                \"pjs_name\": \"2 MERIDAN COURT\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170161,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 672,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T262\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 386,\n                \"pjh_contractnumber\": \"PH84534\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 117752,\n                \"pjs_name\": \"172 SEVEN SISTERS ROAD\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170162,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 673,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T179\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-06A\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 387,\n                \"pjh_contractnumber\": \"WSD44341\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13372,\n                \"pjc_name\": \"MCPHILLIPS (WELLINGTON) LTD M290\",\n                \"pjs_id\": 117740,\n                \"pjs_name\": \"LICHFIELD ROAD\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170165,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 674,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T36\",\n                        \"pjhl_description\": \"30 TONNE CAT330-07 EXCAVATOR TRIMBLE  3D EARTHWORKS READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 675,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 676,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 388,\n                \"pjh_contractnumber\": \"SDW86601\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10532,\n                \"pjc_name\": \"ERITH PLANT SERVICES LIMITED 319\",\n                \"pjs_id\": 117646,\n                \"pjs_name\": \"HOLBORN - EC1A\",\n                \"pjh_deliverydate\": \"2023-09-29\",\n                \"syrinx_id\": 170174,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 677,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T194\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-06A\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 678,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR8\",\n                        \"pjhl_stockno\": \"BR955\",\n                        \"pjhl_description\": \"SB302 ATLAS COPCO BREAKER 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 389,\n                \"pjh_contractnumber\": \"SDW86602\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13471,\n                \"pjc_name\": \"GLENTURAS CONSTRUCTION G186\",\n                \"pjs_id\": 117666,\n                \"pjs_name\": \"EUSTON SOLAR FARM\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170175,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 679,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK161\",\n                        \"pjhl_description\": \"JOHN DEERE 6195M TRACTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 390,\n                \"pjh_contractnumber\": \"SDW86603\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10539,\n                \"pjc_name\": \"BARHALE LIMITED 438\",\n                \"pjs_id\": 117592,\n                \"pjs_name\": \"BARHALE COMPOUND- NW1\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170176,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 680,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ169\",\n                        \"pjhl_description\": \"CAT315-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 681,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 391,\n                \"pjh_contractnumber\": \"PH84536\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12380,\n                \"pjc_name\": \"EXPLORE TRANSPORT LTD E108\",\n                \"pjs_id\": 117649,\n                \"pjs_name\": \"B3 COMPOUND- WINSLOW\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170178,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 682,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T202\",\n                        \"pjhl_description\": \"BELL B30E 30 TONNE DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 392,\n                \"pjh_contractnumber\": \"PH84542\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 117758,\n                \"pjs_name\": \"LONDON - NW8\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170180,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 683,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T174\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 393,\n                \"pjh_contractnumber\": \"PH84538\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170182,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 684,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 685,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T18\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 686,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 394,\n                \"pjh_contractnumber\": \"PH84539\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170183,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 687,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 688,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T42\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 689,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 395,\n                \"pjh_contractnumber\": \"SDW86607\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11068,\n                \"pjc_name\": \"P FLANNERY INT001\",\n                \"pjs_id\": 117779,\n                \"pjs_name\": \"IVER - SL0\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170184,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 396,\n                \"pjh_contractnumber\": \"SDW86608\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13275,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD (FAW V056\",\n                \"pjs_id\": 117846,\n                \"pjs_name\": \"SOUTHAMPTON - SO45 3NY\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170185,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 690,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"PILECROP\",\n                        \"pjhl_stockno\": \"XPILECROP\",\n                        \"pjhl_description\": \"4 JAW CROPPER TO SUIT 13T DUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 397,\n                \"pjh_contractnumber\": \"PH84543\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 117751,\n                \"pjs_name\": \"HAGBOURNE HILL RES & WBS\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170186,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 691,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T169\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 398,\n                \"pjh_contractnumber\": \"WPH43859\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117749,\n                \"pjs_name\": \"CHESTER GREEN LANE SPS\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170188,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 692,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T109\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 399,\n                \"pjh_contractnumber\": \"WSD44346\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117583,\n                \"pjs_name\": \"MIRFIELD STATION\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170190,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 693,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ239\",\n                        \"pjhl_description\": \"(XW5) CAT315GC EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 694,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRABS\",\n                        \"pjhl_stockno\": \"GRAB121\",\n                        \"pjhl_description\": \"TG 42S LOG GRAB - SWIVEL 15T/20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 400,\n                \"pjh_contractnumber\": \"WPH43860\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12639,\n                \"pjc_name\": \"LAND RECOVERY LIMITED L111\",\n                \"pjs_id\": 117725,\n                \"pjs_name\": \"LEA GREEN STATION\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170196,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 695,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EXC3ZT-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 3 Tonne Excavator Zero Tail\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 696,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 401,\n                \"pjh_contractnumber\": \"PH84540\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10531,\n                \"pjc_name\": \"J. BROWNE CONST. CO. LTD 296\",\n                \"pjs_id\": 117693,\n                \"pjs_name\": \"MARLOW- SL7\",\n                \"pjh_deliverydate\": \"2023-09-29\",\n                \"syrinx_id\": 170198,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 697,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T301\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION TRIMBLE EARTHWORKS  READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 402,\n                \"pjh_contractnumber\": \"WPH43861\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12639,\n                \"pjc_name\": \"LAND RECOVERY LIMITED L111\",\n                \"pjs_id\": 117725,\n                \"pjs_name\": \"LEA GREEN STATION\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170200,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 698,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EXC3ZT-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 3 Tonne Excavator Zero Tail\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 699,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 403,\n                \"pjh_contractnumber\": \"WPH43862\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117582,\n                \"pjs_name\": \"THORNHILL POWER STATION\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170202,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 700,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"THLE14-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 14 Metre Telehandler Low Emission\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 701,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 404,\n                \"pjh_contractnumber\": \"ASD3933\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11068,\n                \"pjc_name\": \"P FLANNERY INT001\",\n                \"pjs_id\": 117780,\n                \"pjs_name\": \"BEANSHILL LODGE\",\n                \"pjh_deliverydate\": \"2023-09-26\",\n                \"syrinx_id\": 170204,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 405,\n                \"pjh_contractnumber\": \"APH3573\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13154,\n                \"pjc_name\": \"AMERY CONST. LTD (PERTH) A106\",\n                \"pjs_id\": 117517,\n                \"pjs_name\": \"LINK ROAD COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170207,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 702,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T127\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 406,\n                \"pjh_contractnumber\": \"PH84544\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170208,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 703,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 704,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T38\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 705,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 407,\n                \"pjh_contractnumber\": \"SDW86609\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12044,\n                \"pjc_name\": \"RFS WORKS LIMITED R031\",\n                \"pjs_id\": 117793,\n                \"pjs_name\": \"24 PARK ROYAL ROAD\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170210,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 706,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUMLOAD\",\n                        \"pjhl_stockno\": \"DU1T10\",\n                        \"pjhl_description\": \"1 TONNE 1T-1 SKIPLOADER JCB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 408,\n                \"pjh_contractnumber\": \"NPH4474\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13433,\n                \"pjc_name\": \"CK RAIL SOLUTIONS LTD C323\",\n                \"pjs_id\": 117604,\n                \"pjs_name\": \"HONITON FERN LANE - EX14 9RR\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170213,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 707,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T132\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 409,\n                \"pjh_contractnumber\": \"WPH43863\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117584,\n                \"pjs_name\": \"NETWORK RAIL DEPOT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170215,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 708,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EXC14ZT-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 14 Tonne Excavators Zero Tail\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 709,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 410,\n                \"pjh_contractnumber\": \"NPH4478\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11023,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LIMITED V019\",\n                \"pjs_id\": 117844,\n                \"pjs_name\": \"BATH - BA2 8SQ\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170216,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 710,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T199\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 411,\n                \"pjh_contractnumber\": \"WPH43864\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117584,\n                \"pjs_name\": \"NETWORK RAIL DEPOT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170217,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 711,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EXC14ZT-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 14 Tonne Excavators Zero Tail\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 712,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 412,\n                \"pjh_contractnumber\": \"WPH43865\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117584,\n                \"pjs_name\": \"NETWORK RAIL DEPOT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170221,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 713,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EXC14ZT-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 14 Tonne Excavators Zero Tail\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 714,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 413,\n                \"pjh_contractnumber\": \"PH84549\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10584,\n                \"pjc_name\": \"AVON CONSTRUCTION LIMITED A123\",\n                \"pjs_id\": 117525,\n                \"pjs_name\": \"CHICHESTER -PO19\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170223,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 715,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ52\",\n                        \"pjhl_description\": \"14 TONNE HITACHI ZX135US-6 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 414,\n                \"pjh_contractnumber\": \"SDW86610\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12640,\n                \"pjc_name\": \"HOCHTIEF MURPHY JOINT VENTURE H147\",\n                \"pjs_id\": 117679,\n                \"pjs_name\": \"LPT2 KIDBROOKE SHAFT - SE3\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170224,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 716,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH4\",\n                        \"pjhl_stockno\": \"TH4M14\",\n                        \"pjhl_description\": \"4 MTR JCB 520-40 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 717,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"FIRE01\",\n                        \"pjhl_description\": \"FIRE SUPPRESSION UNIT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 718,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"RENTV\",\n                        \"pjhl_stockno\": \"RV01\",\n                        \"pjhl_description\": \"RENT A VENT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 415,\n                \"pjh_contractnumber\": \"WPH43866\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117584,\n                \"pjs_name\": \"NETWORK RAIL DEPOT\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170225,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 719,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 416,\n                \"pjh_contractnumber\": \"WPH43867\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13417,\n                \"pjc_name\": \"HML UK CONSTRUCTION LTD H164\",\n                \"pjs_id\": 117677,\n                \"pjs_name\": \"HML UK,\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170226,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 720,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N46\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 721,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 722,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSACC\",\n                        \"pjhl_stockno\": \"GPSVRSLI\",\n                        \"pjhl_description\": \"SIM CARD\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 417,\n                \"pjh_contractnumber\": \"PH84550\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13374,\n                \"pjc_name\": \"BALFOUR BEATTY GROUP LTD (M25) B273\",\n                \"pjs_id\": 117546,\n                \"pjs_name\": \"M25 PROJECT -  GU23\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170227,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 723,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 724,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T250\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 725,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 726,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 418,\n                \"pjh_contractnumber\": \"SDW86611\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13269,\n                \"pjc_name\": \"AW RAIL SERVICES LTD A210\",\n                \"pjs_id\": 117526,\n                \"pjs_name\": \"RICHMOND UPON THAMES - TW11\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170228,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 727,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ67\",\n                        \"pjhl_description\": \"25 TONNE CAT325FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 728,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB22\",\n                        \"pjhl_description\": \"RUBBER TRACK 22 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 419,\n                \"pjh_contractnumber\": \"SDW86613\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13269,\n                \"pjc_name\": \"AW RAIL SERVICES LTD A210\",\n                \"pjs_id\": 117526,\n                \"pjs_name\": \"RICHMOND UPON THAMES - TW11\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170230,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 729,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T321\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 730,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR8\",\n                        \"pjhl_stockno\": \"BR841\",\n                        \"pjhl_description\": \"SB302 ATLAS COPCO BREAKER 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 420,\n                \"pjh_contractnumber\": \"WSD44350\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10574,\n                \"pjc_name\": \"SUNBELT RENTALS LTD (EA) A043\",\n                \"pjs_id\": 117817,\n                \"pjs_name\": \"LS FORKLIFT TRAINING\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170232,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 731,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T154\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 421,\n                \"pjh_contractnumber\": \"WPH43868\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117584,\n                \"pjs_name\": \"NETWORK RAIL DEPOT\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170234,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 732,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 733,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS UPLIFT\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 422,\n                \"pjh_contractnumber\": \"WSD44351\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13340,\n                \"pjc_name\": \"MIDLAND ROCK (LEICESTER) LTD M288\",\n                \"pjs_id\": 117743,\n                \"pjs_name\": \"KILBY BRIDGE FARM\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170235,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 734,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T18\",\n                        \"pjhl_description\": \"CAT CS64B ROLLER SELF PROPELLED 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 423,\n                \"pjh_contractnumber\": \"WSD44352\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 117711,\n                \"pjs_name\": \"MARSH FARM VIADUCT - ACCESS GATE N11 G47\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170237,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 735,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR744\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO BREAKER 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 424,\n                \"pjh_contractnumber\": \"SDW86615\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117688,\n                \"pjs_name\": \"COBHAM- GU24\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170240,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 736,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR646\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO BREAKER 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 425,\n                \"pjh_contractnumber\": \"WSD44353\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117657,\n                \"pjs_name\": \"BONNER LANE\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170241,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 737,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T180\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 426,\n                \"pjh_contractnumber\": \"WSD44354\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117657,\n                \"pjs_name\": \"BONNER LANE\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170244,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 738,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS50\",\n                        \"pjhl_description\": \"6 TONNE DUMPER P/SWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 427,\n                \"pjh_contractnumber\": \"WSD44355\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117531,\n                \"pjs_name\": \"LOUTH STW\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170247,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 739,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T243\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 740,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 741,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT\",\n                        \"pjhl_description\": \"HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 742,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW\",\n                        \"pjhl_description\": \"SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 743,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 744,\n                        \"pjhl_seq\": 6,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 428,\n                \"pjh_contractnumber\": \"NPH4480\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117509,\n                \"pjs_name\": \"CORNWALL - TR8 4NX (NORTH SIDE)\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170248,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 745,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T60\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 429,\n                \"pjh_contractnumber\": \"NSD8504\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117510,\n                \"pjs_name\": \"CORNWALL - TR8 4NY\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170249,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 746,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T126\",\n                        \"pjhl_description\": \"5 TONNE CAT305E2 RTG EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 430,\n                \"pjh_contractnumber\": \"SDW86617\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 117654,\n                \"pjs_name\": \"SAILSBURY - SP1\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170251,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 747,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRACK03\",\n                        \"pjhl_stockno\": \"X-NTD301\",\n                        \"pjhl_description\": \"3T TRACKED DUMPER RIDGED MOROOKA MST300VD\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 431,\n                \"pjh_contractnumber\": \"WSD44357\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117563,\n                \"pjs_name\": \"ASTON CHURCH OVERBRIDGE EAST\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170252,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 748,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"PILEMILL\",\n                        \"pjhl_stockno\": \"PHC130-01\",\n                        \"pjhl_description\": \"PILE HEAD CRUSHER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 432,\n                \"pjh_contractnumber\": \"WPH43870\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11203,\n                \"pjc_name\": \"QTS GROUP LTD Q002\",\n                \"pjs_id\": 117791,\n                \"pjs_name\": \"PINFOLD LANE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170255,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 749,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) (1 DAY)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 750,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T264\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 433,\n                \"pjh_contractnumber\": \"SDW86618\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11022,\n                \"pjc_name\": \"VOLKERFITZPATRICK LIMITED V018\",\n                \"pjs_id\": 117857,\n                \"pjs_name\": \"CORBY - NN17\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170256,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 751,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T99\",\n                        \"pjhl_description\": \"BW120AD-5 BOMAG ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 434,\n                \"pjh_contractnumber\": \"PH84552\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13046,\n                \"pjc_name\": \"TILHILL FORESTRY LIMITED T148\",\n                \"pjs_id\": 117828,\n                \"pjs_name\": \"OCKHAM- KT11\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170257,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 752,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T05\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 435,\n                \"pjh_contractnumber\": \"PH84553\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12305,\n                \"pjc_name\": \"J&J PALMER GROUNDWORKS LTD J088\",\n                \"pjs_id\": 117691,\n                \"pjs_name\": \"ALDERSHOT - GU12\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170263,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 753,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T111\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 436,\n                \"pjh_contractnumber\": \"WPH43872\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11774,\n                \"pjc_name\": \"WGERD LIMITED W028\",\n                \"pjs_id\": 117862,\n                \"pjs_name\": \"SHELL GOSFORTH\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170264,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 754,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T82\",\n                        \"pjhl_description\": \"5 TONNE E45 BOBCAT EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 437,\n                \"pjh_contractnumber\": \"WPH43871\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117562,\n                \"pjs_name\": \"SALTLEY PROJECT\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170265,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 755,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24LR\",\n                        \"pjhl_stockno\": \"EXC24LR-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 24 Tonne Excavator Long Reach\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 756,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 757,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXC24LR\",\n                        \"pjhl_stockno\": \"EX25T245\",\n                        \"pjhl_description\": \"15M Longreach 24t CAT 320GC Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 438,\n                \"pjh_contractnumber\": \"SDW86622\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11976,\n                \"pjc_name\": \"SONIC RAIL SERVICES LTD S050\",\n                \"pjs_id\": 117810,\n                \"pjs_name\": \"SAILSBURY - SP2\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170266,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 758,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DVD10\",\n                        \"pjhl_stockno\": \"DVD10T02\",\n                        \"pjhl_description\": \"DV100 DUAL VIEW DUMPER 10T STRAIGHT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 439,\n                \"pjh_contractnumber\": \"WPH43874\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12961,\n                \"pjc_name\": \"SB3 JOINT VENTURE S232\",\n                \"pjs_id\": 117801,\n                \"pjs_name\": \"BALSALL COMMON VIADUCT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170269,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 759,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK25\",\n                        \"pjhl_stockno\": \"DT25T20\",\n                        \"pjhl_description\": \"25 TONNE DUMP TRUCK VOLVO A25G WITH TAIL GATE\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 440,\n                \"pjh_contractnumber\": \"WPH43875\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117583,\n                \"pjs_name\": \"MIRFIELD STATION\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170271,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 760,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 761,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 441,\n                \"pjh_contractnumber\": \"SDW86625\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12044,\n                \"pjc_name\": \"RFS WORKS LIMITED R031\",\n                \"pjs_id\": 117793,\n                \"pjs_name\": \"24 PARK ROYAL ROAD\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170272,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 762,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T152\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7CR Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 442,\n                \"pjh_contractnumber\": \"WPH43876\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117581,\n                \"pjs_name\": \"CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170274,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 763,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6T34\",\n                        \"pjhl_description\": \"D6 LGP(30) VPAT -20 FOLDING BLADE 3D INTEGRATED GPS\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 764,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 443,\n                \"pjh_contractnumber\": \"WPH43877\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12961,\n                \"pjc_name\": \"SB3 JOINT VENTURE S232\",\n                \"pjs_id\": 117800,\n                \"pjs_name\": \"ATTLEBORO LANE OVERBRIDGE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170277,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 765,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T76\",\n                        \"pjhl_description\": \"912G HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 444,\n                \"pjh_contractnumber\": \"WSD44361\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117564,\n                \"pjs_name\": \"WATTON HOUSE VIADUCTS NORTH\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170278,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 766,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ72\",\n                        \"pjhl_description\": \"25 TONNE CAT325FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 767,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 445,\n                \"pjh_contractnumber\": \"PH84556\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 117759,\n                \"pjs_name\": \"POWYS LANE\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170284,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 768,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T122\",\n                        \"pjhl_description\": \"5 TONNE CAT305E2 RTG EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 446,\n                \"pjh_contractnumber\": \"SDW86627\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12569,\n                \"pjc_name\": \"DUNTON ENVIRONMENTAL LTD D053\",\n                \"pjs_id\": 117638,\n                \"pjs_name\": \"SLOUGH GAS WORKS\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170285,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 769,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB123\",\n                        \"pjhl_description\": \"MG1500 EPIROC SELECTOR GRAB 20T/30T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 447,\n                \"pjh_contractnumber\": \"SDW86632\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11489,\n                \"pjc_name\": \"TOTAL RAIL SOLUTIONS LIMITED E008\",\n                \"pjs_id\": 117829,\n                \"pjs_name\": \"BUCKNER CROKE WAY\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170287,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 770,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T134\",\n                        \"pjhl_description\": \"3 TONNE SANY SY26 Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 448,\n                \"pjh_contractnumber\": \"SDW86623\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11976,\n                \"pjc_name\": \"SONIC RAIL SERVICES LTD S050\",\n                \"pjs_id\": 117810,\n                \"pjs_name\": \"SAILSBURY - SP2\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170288,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 771,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"LSHOV\",\n                        \"pjhl_stockno\": \"LS18\",\n                        \"pjhl_description\": \"950 GC CATERPILLAR LOADING SHOVEL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 449,\n                \"pjh_contractnumber\": \"SDW86631\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11629,\n                \"pjc_name\": \"S EVANS & SONS LIMITED S028\",\n                \"pjs_id\": 117799,\n                \"pjs_name\": \"ASHTEAD - KT18\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170289,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 772,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM3S\",\n                        \"pjhl_stockno\": \"DU3TS24\",\n                        \"pjhl_description\": \"3 TONNE SWIVEL DUMPER MECALAC TA3SH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 450,\n                \"pjh_contractnumber\": \"SDW86630\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11629,\n                \"pjc_name\": \"S EVANS & SONS LIMITED S028\",\n                \"pjs_id\": 117799,\n                \"pjs_name\": \"ASHTEAD - KT18\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170290,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 773,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T50\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 774,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR712\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 451,\n                \"pjh_contractnumber\": \"NSD8506\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12456,\n                \"pjc_name\": \"ANDREW SCOTT LTD A173\",\n                \"pjs_id\": 117521,\n                \"pjs_name\": \"NEWPORT - NP10 8TN\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170291,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 775,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T208\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 452,\n                \"pjh_contractnumber\": \"WPH43878\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117687,\n                \"pjs_name\": \"MOSSWOOD TREATMENT WORKS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170292,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 776,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) FOR CUSTOMERS 20T EXC\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 453,\n                \"pjh_contractnumber\": \"PH84558\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117669,\n                \"pjs_name\": \"A47 COMPOUND 1\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170296,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 777,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T122\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 454,\n                \"pjh_contractnumber\": \"WSD44364\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117578,\n                \"pjs_name\": \"HILLHOUSE\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170297,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 778,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T41\",\n                        \"pjhl_description\": \"BOMAG BW219D-5 ROLLER SELF PROPELLED 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 455,\n                \"pjh_contractnumber\": \"PH84559\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117669,\n                \"pjs_name\": \"A47 COMPOUND 1\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170298,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 779,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T179\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 456,\n                \"pjh_contractnumber\": \"SDW86634\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117669,\n                \"pjs_name\": \"A47 COMPOUND 1\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170299,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 780,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T46\",\n                        \"pjhl_description\": \"CAT CS78B SELF PROPELLRD ROLLER 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 457,\n                \"pjh_contractnumber\": \"PH84560\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117669,\n                \"pjs_name\": \"A47 COMPOUND 1\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170300,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 781,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N45\",\n                        \"pjhl_description\": \"Dozer  D61PXI-24 KOMATSU INTERGRATED 3D VPAT FOLDING BLADE\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 458,\n                \"pjh_contractnumber\": \"PH84562\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12547,\n                \"pjc_name\": \"BAUER KELLER JV B210\",\n                \"pjs_id\": 117598,\n                \"pjs_name\": \"09851 - RADSTONE ROAD\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170302,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 782,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ123\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 459,\n                \"pjh_contractnumber\": \"PH84561\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12547,\n                \"pjc_name\": \"BAUER KELLER JV B210\",\n                \"pjs_id\": 117598,\n                \"pjs_name\": \"09851 - RADSTONE ROAD\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170304,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 783,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T42\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 460,\n                \"pjh_contractnumber\": \"WSD44366\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13417,\n                \"pjc_name\": \"HML UK CONSTRUCTION LTD H164\",\n                \"pjs_id\": 117677,\n                \"pjs_name\": \"HML UK,\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170310,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 784,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T25\",\n                        \"pjhl_description\": \"CAT CS78B SELF PROPELLED ROLLER 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 461,\n                \"pjh_contractnumber\": \"WSD44367\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 117712,\n                \"pjs_name\": \"A429 ROAD HEAD,,\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170311,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 785,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T116\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 462,\n                \"pjh_contractnumber\": \"WSD44368\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12536,\n                \"pjc_name\": \"COSTAIN LIMITED (PRESTON) C266\",\n                \"pjs_id\": 117626,\n                \"pjs_name\": \"STANLEY HOUSE FARM\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170315,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 786,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR8\",\n                        \"pjhl_stockno\": \"BR954\",\n                        \"pjhl_description\": \"(3CX ONLY) SB302 ATLAS COPCO BREAKER 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 463,\n                \"pjh_contractnumber\": \"SDW86633\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13137,\n                \"pjc_name\": \"TILBURY DOUGLAS CONST LTD T153\",\n                \"pjs_id\": 117827,\n                \"pjs_name\": \"FARRINGDON - SN7\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170319,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 787,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T23\",\n                        \"pjhl_description\": \"CC1200 ROLLER ATLAS COPCO\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 464,\n                \"pjh_contractnumber\": \"WSD44370\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12054,\n                \"pjc_name\": \"BARHALE CONSTRUCTION SERVICES B104\",\n                \"pjs_id\": 117590,\n                \"pjs_name\": \"BARHALE COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170320,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 788,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ37\",\n                        \"pjhl_description\": \"CX245DR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 789,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB22\",\n                        \"pjhl_description\": \"RUBBER TRACK 22 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 465,\n                \"pjh_contractnumber\": \"WPH43883\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11466,\n                \"pjc_name\": \"SKANSKA CIVIL ENGINEERING S011\",\n                \"pjs_id\": 117806,\n                \"pjs_name\": \"TO EAST WAY NEC\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170325,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 790,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24LR\",\n                        \"pjhl_stockno\": \"EX25TLR04\",\n                        \"pjhl_description\": \"15m Longreach 24t CX210D Case Excavator\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 466,\n                \"pjh_contractnumber\": \"NSD8510\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117508,\n                \"pjs_name\": \"CARDIFF - CF10 4NS\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170329,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 791,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T220\",\n                        \"pjhl_description\": \"(XW5) 9T LOW EMMISSION EXCAVATOR CAT308-06A\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 792,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB99\",\n                        \"pjhl_description\": \"MG500 EPIROC SELECTOR GRAB 5T/8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 793,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"BR8\",\n                        \"pjhl_stockno\": \"BR540\",\n                        \"pjhl_description\": \"SB302 ATLAS COPCO BREAKER 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 467,\n                \"pjh_contractnumber\": \"WPH43881\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117640,\n                \"pjs_name\": \"HAGG LANE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170330,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 794,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ47\",\n                        \"pjhl_description\": \"14 TONNE HITACHI ZX135US-6 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 795,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE213\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 13T/20T\\r\\nCONQUIP 13/21 TONNE EXCAVATOR FORKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 468,\n                \"pjh_contractnumber\": \"WSD44373\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 117835,\n                \"pjs_name\": \"TX35 PIPE LINE -CHORLTON\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170331,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 796,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"HSHEARS\",\n                        \"pjhl_stockno\": \"SHEAR12\",\n                        \"pjhl_description\": \"DXS50A DEMAREC SCRAP SHEAR 32-50T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 469,\n                \"pjh_contractnumber\": \"NPH4482\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12130,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED K068\",\n                \"pjs_id\": 117718,\n                \"pjs_name\": \"BIRDLIP - GL4 8JX\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170332,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 797,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK77\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 470,\n                \"pjh_contractnumber\": \"PH84570\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11781,\n                \"pjc_name\": \"GALLIFORD TRY INFRASTRUCTURE G100\",\n                \"pjs_id\": 117663,\n                \"pjs_name\": \"ALTON - GU34\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170333,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 798,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T313\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 471,\n                \"pjh_contractnumber\": \"SDW86640\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117764,\n                \"pjs_name\": \"CAMBRIDGE  - CB2\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170337,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 799,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T51\",\n                        \"pjhl_description\": \"VOLVO SD135B ROLLER SELF PROPELLED 15T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 472,\n                \"pjh_contractnumber\": \"SDW86639\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13390,\n                \"pjc_name\": \"VIPEN CONSTRUCTION LTD V059\",\n                \"pjs_id\": 117851,\n                \"pjs_name\": \"SHINFIELD STUDIOS - RG2\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170338,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 800,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T314\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION TRIMBLE EARTHWORKS  READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 473,\n                \"pjh_contractnumber\": \"WSD44375\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13029,\n                \"pjc_name\": \"HUGHES BROS CONSTRUCTION LTD H152\",\n                \"pjs_id\": 117684,\n                \"pjs_name\": \"ST MICHAELS AVENUE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170339,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 801,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK25\",\n                        \"pjhl_stockno\": \"DT25T16\",\n                        \"pjhl_description\": \"25 TONNE DUMP TRUCK VOLVO A25G\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 474,\n                \"pjh_contractnumber\": \"SDW86643\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11239,\n                \"pjc_name\": \"VOLKER STEVIN INFRASTRUCTURE V017\",\n                \"pjs_id\": 117854,\n                \"pjs_name\": \"BRIGHTON - BN41\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170341,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 802,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR381\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO BREAKER 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 475,\n                \"pjh_contractnumber\": \"SDW86641\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12640,\n                \"pjc_name\": \"HOCHTIEF MURPHY JOINT VENTURE H147\",\n                \"pjs_id\": 117680,\n                \"pjs_name\": \"NEW CROSS- SE15 1JZ\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170342,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 803,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T147\",\n                        \"pjhl_description\": \"5 TONNE CAT305E2 CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 476,\n                \"pjh_contractnumber\": \"WPH43885\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117579,\n                \"pjs_name\": \"HILL HOUSE,\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170347,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 804,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ127\",\n                        \"pjhl_description\": \"(DEMO- 3D AVOIDANCE) KOMATSU PC228USLC-11 ZERO EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 805,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB92\",\n                        \"pjhl_description\": \"DEMAREC DRG14 SELECTOR GRAB 13T/20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 477,\n                \"pjh_contractnumber\": \"SDW86642\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11551,\n                \"pjc_name\": \"DAWSON-WAM LIMITED D017\",\n                \"pjs_id\": 117634,\n                \"pjs_name\": \"BREAKSPEAR ROAD SOUTH\",\n                \"pjh_deliverydate\": \"2023-09-29\",\n                \"syrinx_id\": 170349,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 806,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T163\",\n                        \"pjhl_description\": \"5 TONNE CAT305 07A CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 478,\n                \"pjh_contractnumber\": \"WSD44377\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10517,\n                \"pjc_name\": \"PJ CAREY PLANT HIRE (OVAL) LTD 010\",\n                \"pjs_id\": 117786,\n                \"pjs_name\": \"CAREYS CIVIL ENGINEERING,,\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170352,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 807,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR8\",\n                        \"pjhl_stockno\": \"BR353\",\n                        \"pjhl_description\": \"SB302 ATLAS COPCO BREAKER 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 479,\n                \"pjh_contractnumber\": \"WPH43886\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13332,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION (A B271\",\n                \"pjs_id\": 117537,\n                \"pjs_name\": \"A63 CASTLE STREET PROJECT\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170354,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 808,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T133\",\n                        \"pjhl_description\": \"5 TONNE CAT305E2 CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 809,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR523\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 810,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT\",\n                        \"pjhl_description\": \"HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 811,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW\",\n                        \"pjhl_description\": \"SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 480,\n                \"pjh_contractnumber\": \"WPH43890\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13332,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION (A B271\",\n                \"pjs_id\": 117537,\n                \"pjs_name\": \"A63 CASTLE STREET PROJECT\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170357,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 812,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T174\",\n                        \"pjhl_description\": \"(XW5) 5 TONNE CAT305 07A CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 481,\n                \"pjh_contractnumber\": \"WSD44379\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117520,\n                \"pjs_name\": \"ALDER STREET COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170361,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 813,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH6\",\n                        \"pjhl_stockno\": \"TH6M07\",\n                        \"pjhl_description\": \"6 METER  JCB 525/60 Telehandler\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 814,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 815,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"FMHOOK\",\n                        \"pjhl_stockno\": \"LH104\",\n                        \"pjhl_description\": \"LIFTING HOOK 5 TONNE TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 482,\n                \"pjh_contractnumber\": \"WPH43893\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117582,\n                \"pjs_name\": \"THORNHILL POWER STATION\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170362,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 816,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N23\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 483,\n                \"pjh_contractnumber\": \"SDW86645\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 117654,\n                \"pjs_name\": \"SAILSBURY - SP1\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170365,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 817,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE48\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 8T\\r\\nCONQUIP 13/21 TONNE EXCAVATOR FORKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 484,\n                \"pjh_contractnumber\": \"WPH43894\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117582,\n                \"pjs_name\": \"THORNHILL POWER STATION\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170368,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 818,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) FOR  TRACTOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 819,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 485,\n                \"pjh_contractnumber\": \"WPH43896\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12562,\n                \"pjc_name\": \"BOELS RENTAL LIMITED B213\",\n                \"pjs_id\": 117884,\n                \"pjs_name\": \"SMULDERS UK\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170369,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 820,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T160\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 486,\n                \"pjh_contractnumber\": \"WSD44384\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117686,\n                \"pjs_name\": \"ROUNDHILL STW\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170373,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 821,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T84\",\n                        \"pjhl_description\": \"CAT CS66B ROLLER SELF PROPELLED 15T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 487,\n                \"pjh_contractnumber\": \"WPH43895\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117641,\n                \"pjs_name\": \"YORKSHIRE WATER TREATMENT PLANT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170380,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 822,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15LR\",\n                        \"pjhl_stockno\": \"EX15TLR12\",\n                        \"pjhl_description\": \"CAT313GC  (LONG REACH 12M) EXCAVATOR 13T\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 823,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRABS\",\n                        \"pjhl_stockno\": \"GRAB03\",\n                        \"pjhl_description\": \"9T KINSHOFER CO5HPX-50 GRAB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 488,\n                \"pjh_contractnumber\": \"SDW86646\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10757,\n                \"pjc_name\": \"GALLAGHER LIMITED G091\",\n                \"pjs_id\": 117661,\n                \"pjs_name\": \"HEMEL HEMPSTEAD- HP2\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170382,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 824,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM3S\",\n                        \"pjhl_stockno\": \"DU3TS28\",\n                        \"pjhl_description\": \"3 TONNE SWIVEL DUMPER MECALAC TA3SH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 489,\n                \"pjh_contractnumber\": \"SDW86647\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10757,\n                \"pjc_name\": \"GALLAGHER LIMITED G091\",\n                \"pjs_id\": 117661,\n                \"pjs_name\": \"HEMEL HEMPSTEAD- HP2\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170383,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 825,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM3S\",\n                        \"pjhl_stockno\": \"DU3TS32\",\n                        \"pjhl_description\": \"3 TONNE  DUMPER POWERSWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 490,\n                \"pjh_contractnumber\": \"WPH43897\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117747,\n                \"pjs_name\": \"BEBSIDE STATION ERRINGTON STREET\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170388,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 826,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK9\",\n                        \"pjhl_stockno\": \"RD9T63\",\n                        \"pjhl_description\": \"JCB110W HYDRADIG WHEELED EXCAVATOR 11 TONNE\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 491,\n                \"pjh_contractnumber\": \"SDW86654\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117847,\n                \"pjs_name\": \"FARNBOROUGH - GU14 0LZ\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170390,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 827,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR34\",\n                        \"pjhl_description\": \"3 Tonne PLANT TRAILER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 492,\n                \"pjh_contractnumber\": \"SDW86657\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11901,\n                \"pjc_name\": \"COLAS LIMITED C058\",\n                \"pjs_id\": 117613,\n                \"pjs_name\": \"NORTH POLE DEPOT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170391,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 828,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T65\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 493,\n                \"pjh_contractnumber\": \"PH84580\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117847,\n                \"pjs_name\": \"FARNBOROUGH - GU14 0LZ\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170392,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 829,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T48\",\n                        \"pjhl_description\": \"3 TONNE HITACHI ZX26U-5A EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 494,\n                \"pjh_contractnumber\": \"SDW86658\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11901,\n                \"pjc_name\": \"COLAS LIMITED C058\",\n                \"pjs_id\": 117613,\n                \"pjs_name\": \"NORTH POLE DEPOT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170393,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 830,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T280\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320GC EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 495,\n                \"pjh_contractnumber\": \"SDW86659\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10539,\n                \"pjc_name\": \"BARHALE LIMITED 438\",\n                \"pjs_id\": 117592,\n                \"pjs_name\": \"BARHALE COMPOUND- NW1\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170394,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 831,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9S\",\n                        \"pjhl_stockno\": \"DVD9TS77\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER SWIVEL  WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 496,\n                \"pjh_contractnumber\": \"SDW86660\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10708,\n                \"pjc_name\": \"M & A DOOCEY CIVIL ENGINEERING D091\",\n                \"pjs_id\": 117731,\n                \"pjs_name\": \"WORTS CAUSEWAY\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170395,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 832,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ155\",\n                        \"pjhl_description\": \"13 TONNE KOMATSU PC138 US-11 ZERO TAIL SWING EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 497,\n                \"pjh_contractnumber\": \"SDW86662\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13275,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD (FAW V056\",\n                \"pjs_id\": 117846,\n                \"pjs_name\": \"SOUTHAMPTON - SO45 3NY\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170396,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 833,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"PILECROP\",\n                        \"pjhl_stockno\": \"XPILECROP\",\n                        \"pjhl_description\": \"3 JAW CROPPER - 13t\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 498,\n                \"pjh_contractnumber\": \"WPH43898\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13354,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S122\",\n                \"pjs_id\": 117701,\n                \"pjs_name\": \"KEX GILL\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170398,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 834,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T56\",\n                        \"pjhl_description\": \"BW213D-5 BOMAG ROLLER SELF PROPELLED 15T\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 499,\n                \"pjh_contractnumber\": \"WPH43900\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12527,\n                \"pjc_name\": \"M LAMBE CONSTRUCTION LTD M112\",\n                \"pjs_id\": 117735,\n                \"pjs_name\": \"TAYLOR WIMPEY / MILLER HOMES,,\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170404,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 835,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T22\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 500,\n                \"pjh_contractnumber\": \"WSD44386\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117515,\n                \"pjs_name\": \"KEIGHLEY STATION\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170405,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 836,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE17\",\n                        \"pjhl_stockno\": \"TH17M27\",\n                        \"pjhl_description\": \"17 MTR JCB 540-170 TELEHANDLER 360CAM (IN LIEU 14M)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 837,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 501,\n                \"pjh_contractnumber\": \"WSD44387\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11435,\n                \"pjc_name\": \"JACKSON FRAMEWORKS LTD J013\",\n                \"pjs_id\": 117694,\n                \"pjs_name\": \"PEBBLE MILL PLAYING FIELD\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170408,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 838,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T59\",\n                        \"pjhl_description\": \"BW120AD-5 BOMAG ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 502,\n                \"pjh_contractnumber\": \"WSD44389\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11435,\n                \"pjc_name\": \"JACKSON FRAMEWORKS LTD J013\",\n                \"pjs_id\": 117694,\n                \"pjs_name\": \"PEBBLE MILL PLAYING FIELD\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170411,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 839,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T29\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 503,\n                \"pjh_contractnumber\": \"WPH43904\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117520,\n                \"pjs_name\": \"ALDER STREET COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170418,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 840,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH6\",\n                        \"pjhl_stockno\": \"TELH6-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 6 Metre Telehandler\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 841,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"PTS\",\n                        \"pjhl_stockno\": \"PTS\",\n                        \"pjhl_description\": \"PTS CHARGES\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 504,\n                \"pjh_contractnumber\": \"WSD44392\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13288,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0060) B265\",\n                \"pjs_id\": 117575,\n                \"pjs_name\": \"COUNTESS STREET\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170420,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 842,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC1.5\",\n                        \"pjhl_stockno\": \"EX2T46\",\n                        \"pjhl_description\": \"1.5 TONNE CAT 301.5 EXCAVATOR c/w QUICK HITCH(PUDSEY)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 505,\n                \"pjh_contractnumber\": \"WPH43905\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12330,\n                \"pjc_name\": \"GT INFRASTRUCTURE HIGHWAYS G100A\",\n                \"pjs_id\": 117672,\n                \"pjs_name\": \"CARLISLE BYPASS\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170423,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 843,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ124\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 506,\n                \"pjh_contractnumber\": \"WPH43906\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12330,\n                \"pjc_name\": \"GT INFRASTRUCTURE HIGHWAYS G100A\",\n                \"pjs_id\": 117672,\n                \"pjs_name\": \"CARLISLE BYPASS\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170425,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 844,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T24\",\n                        \"pjhl_description\": \"30 TONNE CAT330-07 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 507,\n                \"pjh_contractnumber\": \"WSD44396\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117875,\n                \"pjs_name\": \"CURZON 1 MAIN ACCESS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170429,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 845,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR905\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 508,\n                \"pjh_contractnumber\": \"SDW86666\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11179,\n                \"pjc_name\": \"HB TUNNELLING LIMITED H006\",\n                \"pjs_id\": 117674,\n                \"pjs_name\": \"WOKING- GU23\",\n                \"pjh_deliverydate\": \"2023-09-29\",\n                \"syrinx_id\": 170434,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 846,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T87\",\n                        \"pjhl_description\": \"3 TONNE HITACHI ZX26U-6 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 847,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR912\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 509,\n                \"pjh_contractnumber\": \"SDW86667\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 117830,\n                \"pjs_name\": \"Head Office\",\n                \"pjh_deliverydate\": \"2023-09-29\",\n                \"syrinx_id\": 170437,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 848,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T43\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336F EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 510,\n                \"pjh_contractnumber\": \"WPH43907\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12003,\n                \"pjc_name\": \"THOMPSONS OF PRUDHOE LTD T039\",\n                \"pjs_id\": 117826,\n                \"pjs_name\": \"WATERSIDE CDC PROJECT\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170444,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 849,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 511,\n                \"pjh_contractnumber\": \"SDW86655\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10887,\n                \"pjc_name\": \"NICO CONTRACTORS LTD N045\",\n                \"pjs_id\": 117771,\n                \"pjs_name\": \"22 EUSTON ROAD- NW1\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170445,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 850,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ143\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 851,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 852,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR366\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO BREAKER 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 512,\n                \"pjh_contractnumber\": \"WSD44405\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11068,\n                \"pjc_name\": \"P FLANNERY INT001\",\n                \"pjs_id\": 117782,\n                \"pjs_name\": \"GATE 1\",\n                \"pjh_deliverydate\": \"2023-09-29\",\n                \"syrinx_id\": 170449,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 513,\n                \"pjh_contractnumber\": \"WPH43909\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 117633,\n                \"pjs_name\": \"SPERNAL STW\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170457,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 853,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T25\",\n                        \"pjhl_description\": \"CC1200 ROLLER ATLAS COPCO\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 514,\n                \"pjh_contractnumber\": \"SDW86685\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117867,\n                \"pjs_name\": \"AYLESBURY- HP22\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170483,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 854,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T233\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 515,\n                \"pjh_contractnumber\": \"PH84592\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13226,\n                \"pjc_name\": \"THAMES WATER UTILITIES LIMITED T158\",\n                \"pjs_id\": 117922,\n                \"pjs_name\": \"91 HIGHBURY NEW PARK\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170487,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-02\",\n                \"pjh_updated\": \"2023-10-02\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 855,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BACKH\",\n                        \"pjhl_stockno\": \"3CX44\",\n                        \"pjhl_description\": \"JCB CONTRACTOR PRO 3CX BACKHOE SERVO CONTROL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-02 17:34:03\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 825,\n                \"pjh_contractnumber\": \"PH70480\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12496,\n                \"pjc_name\": \"SCS JV S135\",\n                \"pjs_id\": 118121,\n                \"pjs_name\": \"GATE 2 HS2 WEST - UB9\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 104716,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1222,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK124\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR C/w FRONT LINKAGE\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 826,\n                \"pjh_contractnumber\": \"SDW76068\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117847,\n                \"pjs_name\": \"FARNBOROUGH - GU14 0LZ\",\n                \"pjh_deliverydate\": \"2021-10-24\",\n                \"syrinx_id\": 127400,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1223,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE204\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 13t/20T\\r\\nCONQUIP 13/21 TONNE EXCAVATOR FORKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 827,\n                \"pjh_contractnumber\": \"SDW78992\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117847,\n                \"pjs_name\": \"FARNBOROUGH - GU14 0LZ\",\n                \"pjh_deliverydate\": \"2022-05-22\",\n                \"syrinx_id\": 140303,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1224,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE31\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 13T - 20T - CONQUIP\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 828,\n                \"pjh_contractnumber\": \"WPH33449\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117906,\n                \"pjs_name\": \"DINORWIG PENTIR CABLE REPLACEMENT\",\n                \"pjh_deliverydate\": \"2022-08-21\",\n                \"syrinx_id\": 145901,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1225,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T78\",\n                        \"pjhl_description\": \"14 TONNE VOLVO EWR130E  RUBBER DUCK 2 PIECE BOOM\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1226,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"RWHEEL\",\n                        \"pjhl_stockno\": \"XRWHEEL\",\n                        \"pjhl_description\": \"Rock Wheel - 15t\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 829,\n                \"pjh_contractnumber\": \"WSD33833\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12147,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED T/A K013\",\n                \"pjs_id\": 118058,\n                \"pjs_name\": \"DRAINAGE WORKS\",\n                \"pjh_deliverydate\": \"2022-08-29\",\n                \"syrinx_id\": 146348,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1227,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M52\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 540/140 HI -VIS Low Emission\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1228,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKTH\",\n                        \"pjhl_stockno\": \"TB29\",\n                        \"pjhl_description\": \"BUCKET - 7&12M JCB TELE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1229,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M52\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 540/140 HI -VIS Low Emission\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 830,\n                \"pjh_contractnumber\": \"WSD33894\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12147,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED T/A K013\",\n                \"pjs_id\": 118058,\n                \"pjs_name\": \"DRAINAGE WORKS\",\n                \"pjh_deliverydate\": \"2022-09-01\",\n                \"syrinx_id\": 146565,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1230,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD6S\",\n                        \"pjhl_stockno\": \"DVD6TS27\",\n                        \"pjhl_description\": \"DV60 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1231,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DUVD6S\",\n                        \"pjhl_stockno\": \"DVD6TS27\",\n                        \"pjhl_description\": \"DV60 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 831,\n                \"pjh_contractnumber\": \"WSD38396\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11022,\n                \"pjc_name\": \"VOLKERFITZPATRICK LIMITED V018\",\n                \"pjs_id\": 118136,\n                \"pjs_name\": \"SIEMENS BLADE FACTORY\",\n                \"pjh_deliverydate\": \"2022-12-02\",\n                \"syrinx_id\": 152198,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1232,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T63\",\n                        \"pjhl_description\": \"BOMAG BW120AD-5 ROLLER STAGE V\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 832,\n                \"pjh_contractnumber\": \"WPH35036/A\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117965,\n                \"pjs_name\": \"WATER ORTON CENTRAL\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 153174,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1233,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1234,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T59\",\n                        \"pjhl_description\": \"912G HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1235,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 833,\n                \"pjh_contractnumber\": \"WPH35360\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117965,\n                \"pjs_name\": \"WATER ORTON CENTRAL\",\n                \"pjh_deliverydate\": \"2023-01-05\",\n                \"syrinx_id\": 153417,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1236,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1237,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T53\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 834,\n                \"pjh_contractnumber\": \"PH81301\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13275,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD (FAW V056\",\n                \"pjs_id\": 117846,\n                \"pjs_name\": \"SOUTHAMPTON - SO45 3NY\",\n                \"pjh_deliverydate\": \"2023-01-13\",\n                \"syrinx_id\": 154046,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1238,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK18\",\n                        \"pjhl_stockno\": \"RD18T10\",\n                        \"pjhl_description\": \"17 TONNE HITACHI ZX170W-5 RUBBER DUCK\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 835,\n                \"pjh_contractnumber\": \"PH81395\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12821,\n                \"pjc_name\": \"RIVERLINX CJV R273\",\n                \"pjs_id\": 117794,\n                \"pjs_name\": \"CANNING TOWN - E16\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 154380,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1239,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T253\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 836,\n                \"pjh_contractnumber\": \"WPH35679\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117969,\n                \"pjs_name\": \"ACCESS N12 G9\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 155436,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1240,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1241,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T35\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 335F EXCAVATOR  ZERO TAIL C/W BLADE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1242,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"BR50\",\n                        \"pjhl_stockno\": \"BR645\",\n                        \"pjhl_description\": \"3288E RAMMER BREAKER  (40T)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1243,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T120\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336-07 EXCAVATOR TRIMBLE READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1244,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"HSHEARS\",\n                        \"pjhl_stockno\": \"SHEAR11\",\n                        \"pjhl_description\": \"DRS45 DEMAREC / KINSHOFER SHEAR 32-50T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 837,\n                \"pjh_contractnumber\": \"WSD39161\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11816,\n                \"pjc_name\": \"JJF LIMITED J030\",\n                \"pjs_id\": 118041,\n                \"pjs_name\": \"M42,\",\n                \"pjh_deliverydate\": \"2023-02-08\",\n                \"syrinx_id\": 155536,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"sssss\",\n                    \"custom_field_2802\": \"sssss\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1245,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T197\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-06A\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 838,\n                \"pjh_contractnumber\": \"WSD39968\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13350,\n                \"pjc_name\": \"ARGYLE (NORTH WEST) A213\",\n                \"pjs_id\": 117954,\n                \"pjs_name\": \"ROWLAND HOMES,\",\n                \"pjh_deliverydate\": \"2023-03-10\",\n                \"syrinx_id\": 157314,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1246,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"WBOWSER\",\n                        \"pjhl_stockno\": \"XWBOWSER\",\n                        \"pjhl_description\": \"2000LTR STATIC BOWSER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 839,\n                \"pjh_contractnumber\": \"ASD3578\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11053,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION B056\",\n                \"pjs_id\": 117961,\n                \"pjs_name\": \"BALFOUR BEATTY (BEHIND SCREWFIX)\",\n                \"pjh_deliverydate\": \"2023-04-12\",\n                \"syrinx_id\": 159311,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1247,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T30\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1248,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 840,\n                \"pjh_contractnumber\": \"WPH40598\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10822,\n                \"pjc_name\": \"KIER INTEGRATED SERVICES LT K060\",\n                \"pjs_id\": 118062,\n                \"pjs_name\": \"TODDBROOK ENABLING WORKS\",\n                \"pjh_deliverydate\": \"2023-04-16\",\n                \"syrinx_id\": 159421,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1249,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T108\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336-07 EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 841,\n                \"pjh_contractnumber\": \"WSD40950\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13333,\n                \"pjc_name\": \"JN BENTLEY LTD (SPA) B272\",\n                \"pjs_id\": 118046,\n                \"pjs_name\": \"ROPSLEY ROAD\",\n                \"pjh_deliverydate\": \"2023-05-08\",\n                \"syrinx_id\": 160637,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1250,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"SCREEN\",\n                        \"pjhl_stockno\": \"XSCREEN\",\n                        \"pjhl_description\": \"Three Way Screener\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 842,\n                \"pjh_contractnumber\": \"WPH40979\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13333,\n                \"pjc_name\": \"JN BENTLEY LTD (SPA) B272\",\n                \"pjs_id\": 118046,\n                \"pjs_name\": \"ROPSLEY ROAD\",\n                \"pjh_deliverydate\": \"2023-05-08\",\n                \"syrinx_id\": 160851,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1251,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"CRUSH\",\n                        \"pjhl_stockno\": \"XCRUSH\",\n                        \"pjhl_description\": \"Crushers - MINIMUM 10 HOURS\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 843,\n                \"pjh_contractnumber\": \"WSD41015\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117580,\n                \"pjs_name\": \"RAVENSTHORPE ROAD/ CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-05-09\",\n                \"syrinx_id\": 160900,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1252,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DBOWSER\",\n                        \"pjhl_stockno\": \"DB144\",\n                        \"pjhl_description\": \"900 LITRE DIESEL CUBE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 844,\n                \"pjh_contractnumber\": \"WSD41018\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13386,\n                \"pjc_name\": \"TCC PLANT LTD T165\",\n                \"pjs_id\": 117919,\n                \"pjs_name\": \"C/O TCC PLANT\",\n                \"pjh_deliverydate\": \"2023-05-08\",\n                \"syrinx_id\": 160907,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1253,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T190\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 845,\n                \"pjh_contractnumber\": \"PH82753\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 118087,\n                \"pjs_name\": \"BECKTON - E6\",\n                \"pjh_deliverydate\": \"2023-05-14\",\n                \"syrinx_id\": 161064,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1254,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE17\",\n                        \"pjhl_stockno\": \"TH17M49\",\n                        \"pjhl_description\": \"17 MTR JCB 540-170 TELEHANDLER - AIR CON\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 846,\n                \"pjh_contractnumber\": \"SDW84241\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13003,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LTD(STL) V050\",\n                \"pjs_id\": 117850,\n                \"pjs_name\": \"UPPER FROYLE\",\n                \"pjh_deliverydate\": \"2023-05-15\",\n                \"syrinx_id\": 161297,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1255,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR131\",\n                        \"pjhl_description\": \" HERBST H14THS TRAILER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 847,\n                \"pjh_contractnumber\": \"NPH4217\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117509,\n                \"pjs_name\": \"CORNWALL - TR8 4NX (NORTH SIDE)\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 162224,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1256,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T230\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 848,\n                \"pjh_contractnumber\": \"APH3533\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13081,\n                \"pjc_name\": \"BAM NUTTAL LIMITED (BBQ.4550) B240\",\n                \"pjs_id\": 117976,\n                \"pjs_name\": \"CAMERONBRIDGE STATION COMPOUND\",\n                \"pjh_deliverydate\": \"2023-05-31\",\n                \"syrinx_id\": 162299,\n                \"syrinx_raised\": \"2024-03-01 14:21:25\",\n                \"syrinx_modified\": \"2024-03-02 00:00:00\",\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2024-03-17\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"AAAA DFDDDD\",\n                    \"custom_field_2802\": \"AAAA DFDDDD\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1257,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T40\",\n                        \"pjhl_description\": \"14 TONNE HITACHI ZX145W-6 RUBBER DUCK 2 Piece Boom\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": \"1.0\",\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1258,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": \"1.0\",\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 849,\n                \"pjh_contractnumber\": \"NPH4240\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11666,\n                \"pjc_name\": \"M J CHURCH (PLANT) LIMITED M040\",\n                \"pjs_id\": 118078,\n                \"pjs_name\": \"LLWYDCOED - CF44 0LX\",\n                \"pjh_deliverydate\": \"2023-06-13\",\n                \"syrinx_id\": 163119,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1259,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T52\",\n                        \"pjhl_description\": \"40 TONNE CAT336HSR 2 D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1260,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWE\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 850,\n                \"pjh_contractnumber\": \"WPH41402\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12756,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED (S K098\",\n                \"pjs_id\": 118066,\n                \"pjs_name\": \"ACCESS 10 A\",\n                \"pjh_deliverydate\": \"2023-06-14\",\n                \"syrinx_id\": 163290,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1261,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N52\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1262,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1263,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 851,\n                \"pjh_contractnumber\": \"WPH41440\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117967,\n                \"pjs_name\": \"CURDWORTH VIADUCT (NORTH)\",\n                \"pjh_deliverydate\": \"2023-06-18\",\n                \"syrinx_id\": 163545,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1264,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1265,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T31\",\n                        \"pjhl_description\": \"CAT CS78B SELF PROPELLED ROLLER 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 852,\n                \"pjh_contractnumber\": \"WSD42376\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13333,\n                \"pjc_name\": \"JN BENTLEY LTD (SPA) B272\",\n                \"pjs_id\": 118046,\n                \"pjs_name\": \"ROPSLEY ROAD\",\n                \"pjh_deliverydate\": \"2023-06-26\",\n                \"syrinx_id\": 164053,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1266,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"LSHOV\",\n                        \"pjhl_stockno\": \"LS04\",\n                        \"pjhl_description\": \"950 GC CATERPILLAR LOADING SHOVEL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1267,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1268,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 853,\n                \"pjh_contractnumber\": \"SDW85011\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10532,\n                \"pjc_name\": \"ERITH PLANT SERVICES LIMITED 319\",\n                \"pjs_id\": 117646,\n                \"pjs_name\": \"HOLBORN - EC1A\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 164175,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1269,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T46\",\n                        \"pjhl_description\": \"3 TONNE HITACHI ZX26U-5A EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1270,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR882\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 854,\n                \"pjh_contractnumber\": \"WSD42474\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117580,\n                \"pjs_name\": \"RAVENSTHORPE ROAD/ CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-06-29\",\n                \"syrinx_id\": 164415,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1271,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"FORKEX\",\n                        \"pjhl_stockno\": \"FE101\",\n                        \"pjhl_description\": \"125X50X1800MM FORK EXTENSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 855,\n                \"pjh_contractnumber\": \"WSD42525\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13207,\n                \"pjc_name\": \"HSS PROSERVICE LTD H160\",\n                \"pjs_id\": 118035,\n                \"pjs_name\": \"AVOVE LTD\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 164626,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1272,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T309\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION TRIMBLE EARTHWORKS  READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 856,\n                \"pjh_contractnumber\": \"NSD8268\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11666,\n                \"pjc_name\": \"M J CHURCH (PLANT) LIMITED M040\",\n                \"pjs_id\": 118078,\n                \"pjs_name\": \"LLWYDCOED - CF44 0LX\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 165326,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1273,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC80\",\n                        \"pjhl_stockno\": \"EX80T08\",\n                        \"pjhl_description\": \"CAT374-07 CATERPILLAR EXCAVATOR 3D EARTHWORKS READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1274,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR50\",\n                        \"pjhl_stockno\": \"BR655\",\n                        \"pjhl_description\": \"HB7000 DP ATLAS COPCO BREAKER (70T)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 857,\n                \"pjh_contractnumber\": \"ASD3872\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13419,\n                \"pjc_name\": \"ARDERSIER PORT (SCOTLAND LTD) A218\",\n                \"pjs_id\": 117524,\n                \"pjs_name\": \"ARDERSIER PORT\",\n                \"pjh_deliverydate\": \"2023-07-17\",\n                \"syrinx_id\": 165432,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1275,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK78\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1276,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"VTANK\",\n                        \"pjhl_stockno\": \"DB69\",\n                        \"pjhl_description\": \"MAJOR 2400 VACUUM TANKER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 858,\n                \"pjh_contractnumber\": \"WSD42754\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 118057,\n                \"pjs_name\": \"MACE DRAGADOS SITE CABINS\",\n                \"pjh_deliverydate\": \"2023-07-18\",\n                \"syrinx_id\": 165444,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1277,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T268\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 859,\n                \"pjh_contractnumber\": \"WPH42619\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11466,\n                \"pjc_name\": \"SKANSKA CIVIL ENGINEERING S011\",\n                \"pjs_id\": 118123,\n                \"pjs_name\": \"CLOCK LANE\",\n                \"pjh_deliverydate\": \"2023-07-26\",\n                \"syrinx_id\": 165580,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1278,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24LR\",\n                        \"pjhl_stockno\": \"EX25T244\",\n                        \"pjhl_description\": \"24 TONNE LONG REACH CATERPILLAR 320GC LONG REACH 15M EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1279,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 860,\n                \"pjh_contractnumber\": \"WSD42830\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12604,\n                \"pjc_name\": \"READYPOWER TERRAWISE LTD R261\",\n                \"pjs_id\": 118116,\n                \"pjs_name\": \"SANDY LANE\",\n                \"pjh_deliverydate\": \"2023-07-23\",\n                \"syrinx_id\": 165758,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1280,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH9\",\n                        \"pjhl_stockno\": \"TH9M13\",\n                        \"pjhl_description\": \"9 MTR JCB 535/95 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1281,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"FMHOOK\",\n                        \"pjhl_stockno\": \"LH89\",\n                        \"pjhl_description\": \"LIFTING HOOK 5 TONNE TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 861,\n                \"pjh_contractnumber\": \"PH83672\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 118092,\n                \"pjs_name\": \"BROXBOURNE GOLF CLUB\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 166177,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1282,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM3S\",\n                        \"pjhl_stockno\": \"DU3TS07\",\n                        \"pjhl_description\": \"3 TONNE SWIVEL DUMPER WACKER NEUSON 3001\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 862,\n                \"pjh_contractnumber\": \"PH83677\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11711,\n                \"pjc_name\": \"GEOTECHNICAL ENGINEERING LTD G014\",\n                \"pjs_id\": 118026,\n                \"pjs_name\": \"ST ALBANS- AL2\",\n                \"pjh_deliverydate\": \"2023-07-30\",\n                \"syrinx_id\": 166215,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1283,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ127\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 863,\n                \"pjh_contractnumber\": \"WSD42962\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12748,\n                \"pjc_name\": \"ARTHUR CIVIL ENGINEERING LTD A124\",\n                \"pjs_id\": 117955,\n                \"pjs_name\": \"SOUTH ENTRANCE\",\n                \"pjh_deliverydate\": \"2023-07-31\",\n                \"syrinx_id\": 166260,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1284,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T233\",\n                        \"pjhl_description\": \"(XW5) 9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 864,\n                \"pjh_contractnumber\": \"WSD42986\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10764,\n                \"pjc_name\": \"GAP GROUP LIMITED G104\",\n                \"pjs_id\": 118025,\n                \"pjs_name\": \"BUNBURY COMMONS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 166337,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1285,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15LR\",\n                        \"pjhl_stockno\": \"EX15T136\",\n                        \"pjhl_description\": \"15 TONNE LONG REACH CATERPILLAR CAT313F EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1286,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1287,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"COMPAC\",\n                        \"pjhl_stockno\": \"CP27\",\n                        \"pjhl_description\": \"PRODEM PHC100 COMPACTION PLATE (8T)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 865,\n                \"pjh_contractnumber\": \"ASD3897\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13419,\n                \"pjc_name\": \"ARDERSIER PORT (SCOTLAND LTD) A218\",\n                \"pjs_id\": 117524,\n                \"pjs_name\": \"ARDERSIER PORT\",\n                \"pjh_deliverydate\": \"2023-08-01\",\n                \"syrinx_id\": 166404,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1288,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK45\",\n                        \"pjhl_stockno\": \"DT45T36\",\n                        \"pjhl_description\": \"A45G VOLVO DUMPTRUCK C/W TAIL BOARD\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 866,\n                \"pjh_contractnumber\": \"WSD43050\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10997,\n                \"pjc_name\": \"SPEEDY ASSET SERVICES S183\",\n                \"pjs_id\": 118127,\n                \"pjs_name\": \"FUTURE ROOF LEEDS LTD,\",\n                \"pjh_deliverydate\": \"2023-08-06\",\n                \"syrinx_id\": 166539,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1289,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH9\",\n                        \"pjhl_stockno\": \"TH9M12\",\n                        \"pjhl_description\": \"9 MTR JCB 535/95 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 867,\n                \"pjh_contractnumber\": \"WPH43048\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10517,\n                \"pjc_name\": \"PJ CAREY PLANT HIRE (OVAL) LTD 010\",\n                \"pjs_id\": 117784,\n                \"pjs_name\": \"SKELTON GRANGE EFW\",\n                \"pjh_deliverydate\": \"2023-08-07\",\n                \"syrinx_id\": 166583,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1290,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK9\",\n                        \"pjhl_stockno\": \"RD9T72\",\n                        \"pjhl_description\": \"EW100 WACKER NEUSON 10T WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1291,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKACC\",\n                        \"pjhl_stockno\": \"BKT27\",\n                        \"pjhl_description\": \"8T SMP ST10 Tilt Rotator Q/HITCH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 868,\n                \"pjh_contractnumber\": \"NPH4355\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12705,\n                \"pjc_name\": \"BAM NUTTALL LTD (BBN.0560) B126\",\n                \"pjs_id\": 117573,\n                \"pjs_name\": \"WESSEX WATER WORK AREA - BS11 0YS\",\n                \"pjh_deliverydate\": \"2023-08-03\",\n                \"syrinx_id\": 166633,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1292,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T282\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:42:53\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 869,\n                \"pjh_contractnumber\": \"SDW85713\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13071,\n                \"pjc_name\": \"A HAK PIPELINES & A194\",\n                \"pjs_id\": 117943,\n                \"pjs_name\": \"HONINGHAM- NR9\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 166845,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1293,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T284\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320GC EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1294,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCK\",\n                        \"pjhl_stockno\": \"B48\",\n                        \"pjhl_description\": \"48\\\" 20T EXC - TOOTHLESS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 870,\n                \"pjh_contractnumber\": \"WSD43438\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10926,\n                \"pjc_name\": \"POD-TRAK LIMITED P203\",\n                \"pjs_id\": 118111,\n                \"pjs_name\": \"CAMPHILL LINE STATIONS,\",\n                \"pjh_deliverydate\": \"2023-08-08\",\n                \"syrinx_id\": 166874,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1295,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T116\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1296,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T189\",\n                        \"pjhl_description\": \"(XW5) 5 TONNE CAT305 07A CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 871,\n                \"pjh_contractnumber\": \"SDW85724\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11769,\n                \"pjc_name\": \"O'CONNOR UTILITIES LIMITED O060\",\n                \"pjs_id\": 117772,\n                \"pjs_name\": \"OXFORDSHIRE- OX26\",\n                \"pjh_deliverydate\": \"2023-08-09\",\n                \"syrinx_id\": 166901,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1297,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T141\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1298,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"XEXCPFK\",\n                        \"pjhl_description\": \"Excavator Pallet Forks\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 872,\n                \"pjh_contractnumber\": \"WSD43442\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11816,\n                \"pjc_name\": \"JJF LIMITED J030\",\n                \"pjs_id\": 118042,\n                \"pjs_name\": \"313-317 HEATH STREET\",\n                \"pjh_deliverydate\": \"2023-08-08\",\n                \"syrinx_id\": 166915,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1299,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS67\",\n                        \"pjhl_description\": \"6SMDX MECALAC 6 TONNE CABBED DUMPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1300,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 873,\n                \"pjh_contractnumber\": \"WSD43512\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11393,\n                \"pjc_name\": \"JMC (NORTH WEST) LTD J084\",\n                \"pjs_id\": 118044,\n                \"pjs_name\": \"WARRINGTON ROAD\",\n                \"pjh_deliverydate\": \"2023-08-09\",\n                \"syrinx_id\": 166980,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1301,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T256\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 HEX EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 874,\n                \"pjh_contractnumber\": \"PH83820\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12343,\n                \"pjc_name\": \"FK LOWRY PLANT LTD F027\",\n                \"pjs_id\": 118018,\n                \"pjs_name\": \"RAF WITTERING\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 166996,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1302,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T296\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320GC EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 875,\n                \"pjh_contractnumber\": \"WPH43104\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 117835,\n                \"pjs_name\": \"TX35 PIPE LINE -CHORLTON\",\n                \"pjh_deliverydate\": \"2023-08-10\",\n                \"syrinx_id\": 167007,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1303,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T37\",\n                        \"pjhl_description\": \"30 TONNE CAT330-07 EXCAVATOR 2D\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 876,\n                \"pjh_contractnumber\": \"WSD43590\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10926,\n                \"pjc_name\": \"POD-TRAK LIMITED P203\",\n                \"pjs_id\": 118112,\n                \"pjs_name\": \"CAMPHILL LINE STATIONS -\",\n                \"pjh_deliverydate\": \"2023-08-17\",\n                \"syrinx_id\": 167348,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1304,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK22\",\n                        \"pjhl_stockno\": \"RD22T10\",\n                        \"pjhl_description\": \"ZX190W Hitachi WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1305,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 877,\n                \"pjh_contractnumber\": \"SDW85900\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10532,\n                \"pjc_name\": \"ERITH PLANT SERVICES LIMITED 319\",\n                \"pjs_id\": 117646,\n                \"pjs_name\": \"HOLBORN - EC1A\",\n                \"pjh_deliverydate\": \"2023-08-18\",\n                \"syrinx_id\": 167485,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1306,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T89\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313F EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1307,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR981\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO BREAKER 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 878,\n                \"pjh_contractnumber\": \"WSD43649\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11774,\n                \"pjc_name\": \"WGERD LIMITED W028\",\n                \"pjs_id\": 117862,\n                \"pjs_name\": \"SHELL GOSFORTH\",\n                \"pjh_deliverydate\": \"2023-08-21\",\n                \"syrinx_id\": 167565,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1308,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T83\",\n                        \"pjhl_description\": \"BW120AD-5 BOMAG ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 879,\n                \"pjh_contractnumber\": \"WSD43667\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117970,\n                \"pjs_name\": \"BBV A38 ROADHEADS\",\n                \"pjh_deliverydate\": \"2023-08-22\",\n                \"syrinx_id\": 167695,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1309,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T70\",\n                        \"pjhl_description\": \"VOLVO SD135B ROLLER SELF PROPELLED 15T PAD FOOT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1310,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 880,\n                \"pjh_contractnumber\": \"WSD43674\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 118099,\n                \"pjs_name\": \"SHILBOTTLE TB02\",\n                \"pjh_deliverydate\": \"2023-08-22\",\n                \"syrinx_id\": 167738,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1311,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T172\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 881,\n                \"pjh_contractnumber\": \"WSD43680\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117968,\n                \"pjs_name\": \"M42-M6 MOTORWAY LINKS VIADUCT (WEST),\",\n                \"pjh_deliverydate\": \"2023-08-22\",\n                \"syrinx_id\": 167756,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1312,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ7T03\",\n                        \"pjhl_description\": \"Dozer  D85PXI KOMATSU Low Emission 3DGPS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1313,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKTOP\",\n                        \"pjhl_description\": \"INTERGRATED GPS KOMATSU\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 882,\n                \"pjh_contractnumber\": \"WSD43721\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12684,\n                \"pjc_name\": \"MASON STREET FURNITURE LIMITED M247\",\n                \"pjs_id\": 118080,\n                \"pjs_name\": \"LAMESLEY COMPOUND\",\n                \"pjh_deliverydate\": \"2023-08-28\",\n                \"syrinx_id\": 167916,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1314,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T100\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1315,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1316,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1317,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HA\",\n                        \"pjhl_stockno\": \"EA011\",\n                        \"pjhl_description\": \"BM-15 BARRIER MASTER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1318,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"COMPAC\",\n                        \"pjhl_stockno\": \"CP37\",\n                        \"pjhl_description\": \"PRODEM PHC100 COMPACTION PLATE (5T/8T)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 883,\n                \"pjh_contractnumber\": \"WPH43542\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13354,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S122\",\n                \"pjs_id\": 117701,\n                \"pjs_name\": \"KEX GILL\",\n                \"pjh_deliverydate\": \"2023-08-24\",\n                \"syrinx_id\": 167970,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-28\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1319,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T321\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320-GC\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": [\n                    {\n                        \"pjho_id\": 215,\n                        \"pjho_seq\": null,\n                        \"syrinx_id\": null,\n                        \"signal_id\": 41680,\n                        \"pjho_firname\": \"Christian Damián\",\n                        \"pjho_surname\": \"Petersen\",\n                        \"pjho_employeeno\": \"846214598\",\n                        \"pjho_mobile\": \"2915009512\",\n                        \"pjho_created\": \"2023-10-26 17:51:30\",\n                        \"pjho_updated\": \"2023-11-08 11:06:37\"\n                    }\n                ]\n            },\n            {\n                \"pjh_id\": 884,\n                \"pjh_contractnumber\": \"WSD43755\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117659,\n                \"pjs_name\": \"LEEK STW WORKS\",\n                \"pjh_deliverydate\": \"2023-08-28\",\n                \"syrinx_id\": 168010,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1320,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS55\",\n                        \"pjhl_description\": \"TA6000SH MECALAC 6 TONNE SWIVELDUMPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 885,\n                \"pjh_contractnumber\": \"WSD43773\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13287,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0090) M B264\",\n                \"pjs_id\": 117987,\n                \"pjs_name\": \"MORLEY STATION\",\n                \"pjh_deliverydate\": \"2023-08-28\",\n                \"syrinx_id\": 168100,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1321,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD6S\",\n                        \"pjhl_stockno\": \"DVD6TS38\",\n                        \"pjhl_description\": \"DV60 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 886,\n                \"pjh_contractnumber\": \"SDW86079\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 118015,\n                \"pjs_name\": \"WEST CHISENBURY - SN9\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168118,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1322,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T70\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1323,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKSHA\",\n                        \"pjhl_stockno\": \"BSHA23\",\n                        \"pjhl_description\": \"SHAKER 8 TONNE - strickland\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1324,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT\",\n                        \"pjhl_description\": \"HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 887,\n                \"pjh_contractnumber\": \"PH84076\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 118015,\n                \"pjs_name\": \"WEST CHISENBURY - SN9\",\n                \"pjh_deliverydate\": \"2023-08-29\",\n                \"syrinx_id\": 168119,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1325,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRACK12\",\n                        \"pjhl_stockno\": \"XDTRACK12\",\n                        \"pjhl_description\": \"11T TRACKED DUMPER (MST2200 VDR 1101\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 888,\n                \"pjh_contractnumber\": \"WSD43812\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12232,\n                \"pjc_name\": \"SG CIVIL ENGINEERING LTD S065\",\n                \"pjs_id\": 117804,\n                \"pjs_name\": \"SG CIVIL ENGINEERING LTD\",\n                \"pjh_deliverydate\": \"2023-08-31\",\n                \"syrinx_id\": 168261,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1326,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40TLR\",\n                        \"pjhl_stockno\": \"EX40TLR03\",\n                        \"pjhl_description\": \"CAT340F LONG REACH EXAVATOR 18M REACH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 889,\n                \"pjh_contractnumber\": \"WSD43830\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117659,\n                \"pjs_name\": \"LEEK STW WORKS\",\n                \"pjh_deliverydate\": \"2023-08-31\",\n                \"syrinx_id\": 168323,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1327,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T66\",\n                        \"pjhl_description\": \"3 TONNE E26 BOBCAT EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 890,\n                \"pjh_contractnumber\": \"WSD43897\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10926,\n                \"pjc_name\": \"POD-TRAK LIMITED P203\",\n                \"pjs_id\": 118111,\n                \"pjs_name\": \"CAMPHILL LINE STATIONS,\",\n                \"pjh_deliverydate\": \"2023-08-31\",\n                \"syrinx_id\": 168379,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1328,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR862\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 891,\n                \"pjh_contractnumber\": \"WPH43603\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12600,\n                \"pjc_name\": \"COSTAIN LTD (A1 TO SCOTSWOOD) C269\",\n                \"pjs_id\": 118001,\n                \"pjs_name\": \"LEMESLEY COMP\",\n                \"pjh_deliverydate\": \"2023-09-03\",\n                \"syrinx_id\": 168415,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1329,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ134\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL TRIMBLE 3D READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1330,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1331,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 892,\n                \"pjh_contractnumber\": \"NPH4418\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117748,\n                \"pjs_name\": \"CARDIFF - CF14 2FP\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 168433,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1332,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ121\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 893,\n                \"pjh_contractnumber\": \"NPH4419\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117748,\n                \"pjs_name\": \"CARDIFF - CF14 2FP\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 168443,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1333,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ96\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 894,\n                \"pjh_contractnumber\": \"WPH43610\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11471,\n                \"pjc_name\": \"C2V+ C021\",\n                \"pjs_id\": 117994,\n                \"pjs_name\": \"MACCLESFIELD WTW\",\n                \"pjh_deliverydate\": \"2023-09-03\",\n                \"syrinx_id\": 168483,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1334,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T249\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 HEX EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 895,\n                \"pjh_contractnumber\": \"WSD43911\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11769,\n                \"pjc_name\": \"O'CONNOR UTILITIES LIMITED O060\",\n                \"pjs_id\": 118103,\n                \"pjs_name\": \"BEECH LANE\",\n                \"pjh_deliverydate\": \"2023-09-03\",\n                \"syrinx_id\": 168494,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1335,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T259\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1336,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 896,\n                \"pjh_contractnumber\": \"WSD43923\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11816,\n                \"pjc_name\": \"JJF LIMITED J030\",\n                \"pjs_id\": 118042,\n                \"pjs_name\": \"313-317 HEATH STREET\",\n                \"pjh_deliverydate\": \"2023-09-04\",\n                \"syrinx_id\": 168537,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1337,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T164\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7CR Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 897,\n                \"pjh_contractnumber\": \"PH84165\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12496,\n                \"pjc_name\": \"SCS JV S135\",\n                \"pjs_id\": 118121,\n                \"pjs_name\": \"GATE 2 HS2 WEST - UB9\",\n                \"pjh_deliverydate\": \"2023-09-08\",\n                \"syrinx_id\": 168568,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1338,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T21\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 898,\n                \"pjh_contractnumber\": \"PH84170\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11053,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION B056\",\n                \"pjs_id\": 117538,\n                \"pjs_name\": \"M20 PROJECT - TN24\",\n                \"pjh_deliverydate\": \"2023-09-11\",\n                \"syrinx_id\": 168573,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1339,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1340,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ246\",\n                        \"pjhl_description\": \"14TON KOBELCO SK140SRLC-7SD ZERO TAIL c/w DOZER BLADE KNUCKLE BOOM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1341,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW2\",\n                        \"pjhl_description\": \"X WATCH SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1342,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT2\",\n                        \"pjhl_description\": \"X WATCH HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1343,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1344,\n                        \"pjhl_seq\": 6,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"REMOTE\",\n                        \"pjhl_description\": \"REMOTE - HYDRAULIC CUT OUT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1345,\n                        \"pjhl_seq\": 7,\n                        \"pjhl_categorycode\": \"BUCK\",\n                        \"pjhl_stockno\": \"B12\",\n                        \"pjhl_description\": \"12\\\" BUCKET  WITH BLADE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 899,\n                \"pjh_contractnumber\": \"WSD43948\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12000,\n                \"pjc_name\": \"DSD CONSTRUCTION LTD D047\",\n                \"pjs_id\": 118008,\n                \"pjs_name\": \"THRISLINGTON EAST QUARRY\",\n                \"pjh_deliverydate\": \"2023-09-07\",\n                \"syrinx_id\": 168649,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1346,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH4\",\n                        \"pjhl_stockno\": \"TH4M27\",\n                        \"pjhl_description\": \"4 MTR JCB 520-40 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 900,\n                \"pjh_contractnumber\": \"NPH4433\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12677,\n                \"pjc_name\": \"KELSTON SPARKES GROUP LTD K097\",\n                \"pjs_id\": 117709,\n                \"pjs_name\": \"MINEHEAD - TA24 5SJ\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 168775,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1347,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T18\",\n                        \"pjhl_description\": \"933E LUIGONG EXCAVATOR - DEMO SPEC\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1348,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSRAD\",\n                        \"pjhl_stockno\": \"GPSR272\",\n                        \"pjhl_description\": \"TRIMBLE SNR434 RADIO\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 901,\n                \"pjh_contractnumber\": \"NPH4434\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12677,\n                \"pjc_name\": \"KELSTON SPARKES GROUP LTD K097\",\n                \"pjs_id\": 117709,\n                \"pjs_name\": \"MINEHEAD - TA24 5SJ\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 168777,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1349,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T17\",\n                        \"pjhl_description\": \"933E LUIGONG EXCAVATOR - DEMO SPEC\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1350,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSRAD\",\n                        \"pjhl_stockno\": \"GPSR271\",\n                        \"pjhl_description\": \"TRIMBLE SNR434 RADIO\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 902,\n                \"pjh_contractnumber\": \"SDW86263\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117519,\n                \"pjs_name\": \"EUROSTAR TEMPLE MILLS DEPOT - E10\",\n                \"pjh_deliverydate\": \"2023-09-10\",\n                \"syrinx_id\": 168833,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1351,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T149\",\n                        \"pjhl_description\": \"5 TONNE CAT305E2 CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1352,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT\",\n                        \"pjhl_description\": \"HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1353,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW\",\n                        \"pjhl_description\": \"SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1354,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"REMOTE\",\n                        \"pjhl_description\": \"REMOTE - HYDRAULIC CUT OUT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1355,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"AUGER\",\n                        \"pjhl_stockno\": \"A027\",\n                        \"pjhl_description\": \"AUGER TORGUE 7,000 MAX (5.0T - 7.0T)   DRIVE UNIT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 903,\n                \"pjh_contractnumber\": \"PH84245\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13256,\n                \"pjc_name\": \"EKFB JV (NON F/A) E131\",\n                \"pjs_id\": 118009,\n                \"pjs_name\": \"CHIPPING WARDEN - OX17\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 168907,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1356,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK169\",\n                        \"pjhl_description\": \"JOHN DEERE 8R370 TRACTOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1357,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"CLASS 1 LICENSE\",\n                        \"pjhl_operatedtype\": \"S\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 904,\n                \"pjh_contractnumber\": \"NPH4442\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12705,\n                \"pjc_name\": \"BAM NUTTALL LTD (BBN.0560) B126\",\n                \"pjs_id\": 117982,\n                \"pjs_name\": \"AVONMOUTH - BS11 9AF\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169044,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1358,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T115\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1359,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSBILE\",\n                        \"pjhl_description\": \"LEICA BASE INSTALL KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1360,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"COMPAC\",\n                        \"pjhl_stockno\": \"CP52\",\n                        \"pjhl_description\": \"EPIROC HC350 Compactor 5T/8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 905,\n                \"pjh_contractnumber\": \"SDW86339\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11068,\n                \"pjc_name\": \"P FLANNERY INT001\",\n                \"pjs_id\": 117779,\n                \"pjs_name\": \"IVER - SL0\",\n                \"pjh_deliverydate\": \"2023-09-12\",\n                \"syrinx_id\": 169116,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 906,\n                \"pjh_contractnumber\": \"SDW86366\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 118016,\n                \"pjs_name\": \"SUNDRIDGE PARK GOLF CLUB\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169221,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1361,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS46\",\n                        \"pjhl_description\": \"6 TONNE DUMPER P/SWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 907,\n                \"pjh_contractnumber\": \"SDW86367\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 118016,\n                \"pjs_name\": \"SUNDRIDGE PARK GOLF CLUB\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169222,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1362,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T173\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 908,\n                \"pjh_contractnumber\": \"WSD44100\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117950,\n                \"pjs_name\": \"COUNTESS STREET\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169232,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1363,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T168\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1364,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"AUGER\",\n                        \"pjhl_stockno\": \"A002\",\n                        \"pjhl_description\": \"AUGER TORGUE 7,000 MAX (5.0T - 7.0T)   DRIVE UNIT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 909,\n                \"pjh_contractnumber\": \"WSD44110\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11769,\n                \"pjc_name\": \"O'CONNOR UTILITIES LIMITED O060\",\n                \"pjs_id\": 118104,\n                \"pjs_name\": \"BALL LANE\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169248,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1365,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T271\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313 GC EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1366,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 910,\n                \"pjh_contractnumber\": \"WSD44115\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12604,\n                \"pjc_name\": \"READYPOWER TERRAWISE LTD R261\",\n                \"pjs_id\": 118116,\n                \"pjs_name\": \"SANDY LANE\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169266,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1367,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T59\",\n                        \"pjhl_description\": \"VOLVO SD135 SELF PROPEELED ROLLER 13T HIGH TRACTION VARIANT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 911,\n                \"pjh_contractnumber\": \"WSD44123\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12604,\n                \"pjc_name\": \"READYPOWER TERRAWISE LTD R261\",\n                \"pjs_id\": 118116,\n                \"pjs_name\": \"SANDY LANE\",\n                \"pjh_deliverydate\": \"2023-09-14\",\n                \"syrinx_id\": 169276,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1368,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ137\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 912,\n                \"pjh_contractnumber\": \"WPH43723\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 118002,\n                \"pjs_name\": \"ASTWOOD BANK STW\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169298,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1369,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T270\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 913,\n                \"pjh_contractnumber\": \"WSD44138\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11466,\n                \"pjc_name\": \"SKANSKA CIVIL ENGINEERING S011\",\n                \"pjs_id\": 118122,\n                \"pjs_name\": \"HEATHEND HOUSE\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169314,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1370,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"PILECROP\",\n                        \"pjhl_stockno\": \"XPILECROP\",\n                        \"pjhl_description\": \"300 - 900MM ROUND CROPPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 914,\n                \"pjh_contractnumber\": \"WPH43728\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11053,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION B056\",\n                \"pjs_id\": 117871,\n                \"pjs_name\": \"DALEHOUSE LANE\",\n                \"pjh_deliverydate\": \"2023-09-17\",\n                \"syrinx_id\": 169323,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1371,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1372,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T211\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1373,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"RCI\",\n                        \"pjhl_stockno\": \"RCI1\",\n                        \"pjhl_description\": \"CAT RCI\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 915,\n                \"pjh_contractnumber\": \"WPH43729\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117580,\n                \"pjs_name\": \"RAVENSTHORPE ROAD/ CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-09-15\",\n                \"syrinx_id\": 169341,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1374,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T34\",\n                        \"pjhl_description\": \"CAT CS66B ROLLER SELF PROPELLED 15T\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 916,\n                \"pjh_contractnumber\": \"WSD44195\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 118100,\n                \"pjs_name\": \"BBV MAIN COMPOUND\",\n                \"pjh_deliverydate\": \"2023-09-19\",\n                \"syrinx_id\": 169500,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1375,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40TLR\",\n                        \"pjhl_stockno\": \"EX50T20\",\n                        \"pjhl_description\": \"(XW5) CAT352F 60 TONNE 20M LONGREACH EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:01\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 917,\n                \"pjh_contractnumber\": \"WSD44204\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10733,\n                \"pjc_name\": \"FINNING (UK) LTD F004\",\n                \"pjs_id\": 118012,\n                \"pjs_name\": \"IRLAM YARD\",\n                \"pjh_deliverydate\": \"2023-09-18\",\n                \"syrinx_id\": 169547,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1376,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ5K14\",\n                        \"pjhl_description\": \"Dozer D3 12 LGP CATERPILLAR STAGE V\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 918,\n                \"pjh_contractnumber\": \"WSD44213\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 118098,\n                \"pjs_name\": \"PARK LANE\",\n                \"pjh_deliverydate\": \"2023-09-19\",\n                \"syrinx_id\": 169626,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1377,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T105\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1378,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"RTEETH\",\n                        \"pjhl_stockno\": \"RT39\",\n                        \"pjhl_description\": \"RIPPER TOOTH FOR 5 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 919,\n                \"pjh_contractnumber\": \"WSD44228\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13296,\n                \"pjc_name\": \"GT ENVIRONMENT - OU 5311 G175\",\n                \"pjs_id\": 118027,\n                \"pjs_name\": \"KIRBY STW\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169682,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1379,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T65\",\n                        \"pjhl_description\": \"5 TONNE U55-4 KUBOTA EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 920,\n                \"pjh_contractnumber\": \"SDW86496\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 118130,\n                \"pjs_name\": \"WELLINGBOROUGH - NN8 6BW\",\n                \"pjh_deliverydate\": \"2023-09-20\",\n                \"syrinx_id\": 169703,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1380,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T03\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 921,\n                \"pjh_contractnumber\": \"SDW86495\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 118130,\n                \"pjs_name\": \"WELLINGBOROUGH - NN8 6BW\",\n                \"pjh_deliverydate\": \"2023-09-20\",\n                \"syrinx_id\": 169704,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1381,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T14\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 922,\n                \"pjh_contractnumber\": \"WSD44240\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 118132,\n                \"pjs_name\": \"BURY GAS HOLDER\",\n                \"pjh_deliverydate\": \"2023-09-19\",\n                \"syrinx_id\": 169722,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1382,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"FORKEX\",\n                        \"pjhl_stockno\": \"FE112\",\n                        \"pjhl_description\": \"125X50X1800MM FORK EXTENSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 923,\n                \"pjh_contractnumber\": \"PH84449\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12841,\n                \"pjc_name\": \"METRAIL CONSTRUCTION LIMITED M255\",\n                \"pjs_id\": 118083,\n                \"pjs_name\": \"M20- J6-6A\",\n                \"pjh_deliverydate\": \"2023-09-29\",\n                \"syrinx_id\": 169776,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1383,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1384,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ85\",\n                        \"pjhl_description\": \"24 TONNE KOMATSU PC228USLC-11 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1385,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB22\",\n                        \"pjhl_description\": \"RUBBER TRACK 22 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 924,\n                \"pjh_contractnumber\": \"SDW86534\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 118129,\n                \"pjs_name\": \"CB6 3LU\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169872,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1386,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T207\",\n                        \"pjhl_description\": \"VOLVO A30G DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 925,\n                \"pjh_contractnumber\": \"SDW86545\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13409,\n                \"pjc_name\": \"TRU7 LTD T/A TRUPLANT T167\",\n                \"pjs_id\": 118131,\n                \"pjs_name\": \"LIMEBROOK PARK\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 169918,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1387,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK30\",\n                        \"pjhl_stockno\": \"DT30T177\",\n                        \"pjhl_description\": \"30 TONNE DUMP TRUCK CAT 730\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 926,\n                \"pjh_contractnumber\": \"WPH43824\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13354,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S122\",\n                \"pjs_id\": 117701,\n                \"pjs_name\": \"KEX GILL\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169929,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1388,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T329\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320-GC\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1389,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKLE\",\n                        \"pjhl_description\": \"LEICA CAB KIT (EXCAVATOR)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 927,\n                \"pjh_contractnumber\": \"WPH43827\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12851,\n                \"pjc_name\": \"BELL FORMWORK & CIVIL B220\",\n                \"pjs_id\": 117993,\n                \"pjs_name\": \"EUROVIA CONTRACTING\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169937,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1390,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK18\",\n                        \"pjhl_stockno\": \"RD18T40\",\n                        \"pjhl_description\": \"15 TONNE HITACHI ZX155W-7 2 PIECE BOOM RUBBER DUCK\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 928,\n                \"pjh_contractnumber\": \"WPH43828\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13354,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S122\",\n                \"pjs_id\": 117701,\n                \"pjs_name\": \"KEX GILL\",\n                \"pjh_deliverydate\": \"2023-09-24\",\n                \"syrinx_id\": 169941,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1391,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N37\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1392,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKEWD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS INTEGRATED CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 929,\n                \"pjh_contractnumber\": \"PH84486\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 169950,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1393,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1394,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T313\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320GC EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1395,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1396,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"BR24\",\n                        \"pjhl_stockno\": \"BR831\",\n                        \"pjhl_description\": \"MB1200E EPIROC BREAKER 20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 930,\n                \"pjh_contractnumber\": \"WSD44292\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10926,\n                \"pjc_name\": \"POD-TRAK LIMITED P203\",\n                \"pjs_id\": 118113,\n                \"pjs_name\": \"PT997 CAMPHILL LINE STATIONS\",\n                \"pjh_deliverydate\": \"2023-09-21\",\n                \"syrinx_id\": 169972,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1397,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ148\",\n                        \"pjhl_description\": \"(XW5) 13 TONNE KOMATSU PC138 US-11 ZERO TAIL SWING EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 931,\n                \"pjh_contractnumber\": \"WSD44301\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13287,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0090) M B264\",\n                \"pjs_id\": 117987,\n                \"pjs_name\": \"MORLEY STATION\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170009,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1398,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC0.75\",\n                        \"pjhl_stockno\": \"EX1T04\",\n                        \"pjhl_description\": \"K008-3 KUBOTA MICRO EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1399,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR1.5\",\n                        \"pjhl_stockno\": \"XBR1.5\",\n                        \"pjhl_description\": \"Up To 1.5 Tonne Breaker\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 932,\n                \"pjh_contractnumber\": \"WSD44303\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13288,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0060) B265\",\n                \"pjs_id\": 117983,\n                \"pjs_name\": \"ALDER STREET\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170017,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1400,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKSHA\",\n                        \"pjhl_stockno\": \"BSHA39\",\n                        \"pjhl_description\": \"SHAKER BUCKET 20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 933,\n                \"pjh_contractnumber\": \"WSD44312\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11629,\n                \"pjc_name\": \"S EVANS & SONS LIMITED S028\",\n                \"pjs_id\": 118118,\n                \"pjs_name\": \"SPENCE LANE\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170028,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1401,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH9\",\n                        \"pjhl_stockno\": \"TH9M17\",\n                        \"pjhl_description\": \"9 MTR JCB 535/95 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 934,\n                \"pjh_contractnumber\": \"WSD44318\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 118132,\n                \"pjs_name\": \"BURY GAS HOLDER\",\n                \"pjh_deliverydate\": \"2023-09-25\",\n                \"syrinx_id\": 170045,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1402,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T183\",\n                        \"pjhl_description\": \"(H/D) 5 TONNE CAT305 07A CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 935,\n                \"pjh_contractnumber\": \"WSD44326\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11126,\n                \"pjc_name\": \"COLEMAN & COMPANY LIMITED C203\",\n                \"pjs_id\": 117615,\n                \"pjs_name\": \"BRIERFIELD GAS HOLDER\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170065,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1403,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T12\",\n                        \"pjhl_description\": \"30 TONNE KOMATSU PC290LC-11 EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1404,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HSHEARS\",\n                        \"pjhl_stockno\": \"SHEAR04\",\n                        \"pjhl_description\": \"VTN EUROPE 30/40 TON CI300 SHEARS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 936,\n                \"pjh_contractnumber\": \"SDW86576\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117529,\n                \"pjs_name\": \"NEWPORT PAGNELL- MK16\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170077,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1405,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T279\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1406,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1407,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1408,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1409,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT\",\n                        \"pjhl_description\": \"HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1410,\n                        \"pjhl_seq\": 6,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW\",\n                        \"pjhl_description\": \"SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 937,\n                \"pjh_contractnumber\": \"PH84513\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12496,\n                \"pjc_name\": \"SCS JV S135\",\n                \"pjs_id\": 117803,\n                \"pjs_name\": \"EUSTON - HAMPSTEAD ROAD\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170082,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1411,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24LR\",\n                        \"pjhl_stockno\": \"EX25TLR12\",\n                        \"pjhl_description\": \"18m Longreach 30t CX250E CASE 250E Excavator\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1412,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 938,\n                \"pjh_contractnumber\": \"PH84521\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11698,\n                \"pjc_name\": \"FLO JV F090\",\n                \"pjs_id\": 117656,\n                \"pjs_name\": \"ALBERT EMBANKMENT - SE1\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170100,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1413,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ35\",\n                        \"pjhl_description\": \"14 TONNE HITACHI ZX135US-6 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 939,\n                \"pjh_contractnumber\": \"SDW86581\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11698,\n                \"pjc_name\": \"FLO JV F090\",\n                \"pjs_id\": 117656,\n                \"pjs_name\": \"ALBERT EMBANKMENT - SE1\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170102,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1414,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC6ZT\",\n                        \"pjhl_stockno\": \"EX6T05\",\n                        \"pjhl_description\": \"6 TONNE HITACHI ZX65USB-5A EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 940,\n                \"pjh_contractnumber\": \"WSD44332\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12288,\n                \"pjc_name\": \"COSTAIN LIMITED (M6) C109\",\n                \"pjs_id\": 117619,\n                \"pjs_name\": \"NEWTON LE WILOWS\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170117,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 941,\n                \"pjh_contractnumber\": \"NSD8498\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10997,\n                \"pjc_name\": \"SPEEDY ASSET SERVICES S183\",\n                \"pjs_id\": 117813,\n                \"pjs_name\": \"TAUNTON - TA3 6BE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170159,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1415,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD6S\",\n                        \"pjhl_stockno\": \"DVD6TS66\",\n                        \"pjhl_description\": \"DV60 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1416,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL - TO BE ADVISED AT TIME OF HIRE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 942,\n                \"pjh_contractnumber\": \"SDW86599\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12821,\n                \"pjc_name\": \"RIVERLINX CJV R273\",\n                \"pjs_id\": 117794,\n                \"pjs_name\": \"CANNING TOWN - E16\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170163,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1417,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T241\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 943,\n                \"pjh_contractnumber\": \"WSD44345\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12054,\n                \"pjc_name\": \"BARHALE CONSTRUCTION SERVICES B104\",\n                \"pjs_id\": 117591,\n                \"pjs_name\": \"DEWSBURY SEWAGE TREATMENT WORKS\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170172,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1418,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T216\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 944,\n                \"pjh_contractnumber\": \"PH84537\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13464,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED - K122\",\n                \"pjs_id\": 117717,\n                \"pjs_name\": \"CALVERT - MK18\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170181,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1419,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1420,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T90\",\n                        \"pjhl_description\": \"HYDREMA 912G MULTI TIP DUMP TRUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1421,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 945,\n                \"pjh_contractnumber\": \"WSD44347\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12639,\n                \"pjc_name\": \"LAND RECOVERY LIMITED L111\",\n                \"pjs_id\": 117725,\n                \"pjs_name\": \"LEA GREEN STATION\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170193,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1422,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T90\",\n                        \"pjhl_description\": \"3 TONNE HITACHI ZX26U-6 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 946,\n                \"pjh_contractnumber\": \"WSD44348\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12639,\n                \"pjc_name\": \"LAND RECOVERY LIMITED L111\",\n                \"pjs_id\": 117725,\n                \"pjs_name\": \"LEA GREEN STATION\",\n                \"pjh_deliverydate\": \"2023-09-27\",\n                \"syrinx_id\": 170195,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1423,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T189\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 947,\n                \"pjh_contractnumber\": \"WSD44349\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117581,\n                \"pjs_name\": \"CALDER ROAD\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170199,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1424,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR44\",\n                        \"pjhl_description\": \"25FT.WARWICK FLATBED TRAILER (blue) HYDRO BRAKE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 948,\n                \"pjh_contractnumber\": \"SDW86616\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12821,\n                \"pjc_name\": \"RIVERLINX CJV R273\",\n                \"pjs_id\": 117794,\n                \"pjs_name\": \"CANNING TOWN - E16\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170245,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1425,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"PILEHAMM\",\n                        \"pjhl_stockno\": \"XPILEHAMM\",\n                        \"pjhl_description\": \"PILING HAMMER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 949,\n                \"pjh_contractnumber\": \"PH84551\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117518,\n                \"pjs_name\": \"PETERBOROUGH - PE1\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170246,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1426,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE14\",\n                        \"pjhl_stockno\": \"TH14M86\",\n                        \"pjhl_description\": \"14 Mtr Telehandler 540/140 HI -VIS Low Emission  - AIR CON.\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 950,\n                \"pjh_contractnumber\": \"WSD44358\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12159,\n                \"pjc_name\": \"NETWORK RAIL N020\",\n                \"pjs_id\": 117770,\n                \"pjs_name\": \"THE HUB / NOBEL WAY\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170253,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1427,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC0.75\",\n                        \"pjhl_stockno\": \"XEXC0.75\",\n                        \"pjhl_description\": \"Micro Excavator - 3/4T EXC FLEET E209 CODE 3168\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 951,\n                \"pjh_contractnumber\": \"NSD8505\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10574,\n                \"pjc_name\": \"SUNBELT RENTALS LTD (EA) A043\",\n                \"pjs_id\": 117818,\n                \"pjs_name\": \"EXMINSTER - EX6 8DY\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170259,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1428,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ116\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 952,\n                \"pjh_contractnumber\": \"WSD44360\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10733,\n                \"pjc_name\": \"FINNING (UK) LTD F004\",\n                \"pjs_id\": 117653,\n                \"pjs_name\": \"TRADING ESTATE\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170268,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 953,\n                \"pjh_contractnumber\": \"WSD44362\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10822,\n                \"pjc_name\": \"KIER INTEGRATED SERVICES LT K060\",\n                \"pjs_id\": 117714,\n                \"pjs_name\": \"GATE 2 - LOWER SITE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170279,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1429,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"HA\",\n                        \"pjhl_stockno\": \"X\",\n                        \"pjhl_description\": \"CRUSHER BUCKET TO SUIT EX25T197\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 954,\n                \"pjh_contractnumber\": \"PH84557\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13460,\n                \"pjc_name\": \"GT INFRASTRUCTURE - HIGHWAYS G184\",\n                \"pjs_id\": 117669,\n                \"pjs_name\": \"A47 COMPOUND 1\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170294,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1430,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC30\",\n                        \"pjhl_stockno\": \"EX30T20\",\n                        \"pjhl_description\": \"30 TONNE CAT330-07 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 955,\n                \"pjh_contractnumber\": \"PH84563\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 117760,\n                \"pjs_name\": \"HORNTON STREET\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170306,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1431,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ165\",\n                        \"pjhl_description\": \"CAT315-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 956,\n                \"pjh_contractnumber\": \"SDW86636\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10625,\n                \"pjc_name\": \"B&W TUNNELLING LIMITED B158\",\n                \"pjs_id\": 117527,\n                \"pjs_name\": \"NORWICH - NR9\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170308,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1432,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ121\",\n                        \"pjhl_description\": \"(XW5) KOMATSU PC228USLC-11 ZERO EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 957,\n                \"pjh_contractnumber\": \"PH84564\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11769,\n                \"pjc_name\": \"O'CONNOR UTILITIES LIMITED O060\",\n                \"pjs_id\": 117772,\n                \"pjs_name\": \"OXFORDSHIRE- OX26\",\n                \"pjh_deliverydate\": \"2023-09-28\",\n                \"syrinx_id\": 170314,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1433,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK108\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1434,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1435,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1436,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"VTANK\",\n                        \"pjhl_stockno\": \"DB92\",\n                        \"pjhl_description\": \"MAJOR 2600 VACUUM TANKER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1437,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 958,\n                \"pjh_contractnumber\": \"WPH43880\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12595,\n                \"pjc_name\": \"GT Building North West OU 3040 G135\",\n                \"pjs_id\": 117667,\n                \"pjs_name\": \"NEWTON LE WILLOWS STATION SITE COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170326,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1438,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24LR\",\n                        \"pjhl_stockno\": \"EX25TLR08\",\n                        \"pjhl_description\": \"(XW4) 15m Longreach 24t JCB 220X Excavator\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1439,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKACC\",\n                        \"pjhl_stockno\": \"BKT81\",\n                        \"pjhl_description\": \"13T KINSHOFER TR14-DF10 TILT ROTATOR Q/HITCH 15 TONNE GPS FITTED AUGUST 2022\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1440,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB22\",\n                        \"pjhl_description\": \"RUBBER TRACK 22 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 959,\n                \"pjh_contractnumber\": \"WPH43882\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117640,\n                \"pjs_name\": \"HAGG LANE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170327,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1441,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRACK07\",\n                        \"pjhl_stockno\": \"X-NTD703\",\n                        \"pjhl_description\": \"7T TRACKED DUMPER MST1500VDR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1442,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 960,\n                \"pjh_contractnumber\": \"WSD44374\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11816,\n                \"pjc_name\": \"JJF LIMITED J030\",\n                \"pjs_id\": 117696,\n                \"pjs_name\": \"CANAL BANK\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170335,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1443,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T106\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 961,\n                \"pjh_contractnumber\": \"WSD44376\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12000,\n                \"pjc_name\": \"DSD CONSTRUCTION LTD D047\",\n                \"pjs_id\": 117637,\n                \"pjs_name\": \"MAYFIELD DEPOT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170340,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1444,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM3S\",\n                        \"pjhl_stockno\": \"DU3TS30\",\n                        \"pjhl_description\": \"3 TONNE SWIVEL DUMPER MECALAC TA3SH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1445,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 962,\n                \"pjh_contractnumber\": \"WPH43884\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12000,\n                \"pjc_name\": \"DSD CONSTRUCTION LTD D047\",\n                \"pjs_id\": 117637,\n                \"pjs_name\": \"MAYFIELD DEPOT\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170344,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1446,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T75\",\n                        \"pjhl_description\": \"5 TONNE E45 BOBCAT EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1447,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR528\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1448,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GRABS\",\n                        \"pjhl_stockno\": \"GRAB88\",\n                        \"pjhl_description\": \"KERB LIFTER 500KGS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1449,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HA\",\n                        \"pjhl_stockno\": \"X\",\n                        \"pjhl_description\": \"CHAIN FOR KERB LIFTER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 963,\n                \"pjh_contractnumber\": \"PH84571\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13046,\n                \"pjc_name\": \"TILHILL FORESTRY LIMITED T148\",\n                \"pjs_id\": 117828,\n                \"pjs_name\": \"OCKHAM- KT11\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170348,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1450,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T12\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 964,\n                \"pjh_contractnumber\": \"WSD44378\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117690,\n                \"pjs_name\": \"HEANOR MILNHAY STW\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170353,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1451,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T125\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 340-08 EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 965,\n                \"pjh_contractnumber\": \"WPH43888\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117640,\n                \"pjs_name\": \"HAGG LANE\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170356,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1452,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRACK07\",\n                        \"pjhl_stockno\": \"X-NTD704\",\n                        \"pjhl_description\": \"7T TRACKED DUMPER MST1500VDR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1453,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 966,\n                \"pjh_contractnumber\": \"WPH43891\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117640,\n                \"pjs_name\": \"HAGG LANE\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170359,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1454,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T193\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1455,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 967,\n                \"pjh_contractnumber\": \"WPH43892\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117640,\n                \"pjs_name\": \"HAGG LANE\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170360,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1456,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T307\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION TRIMBLE EARTHWORKS  READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1457,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 968,\n                \"pjh_contractnumber\": \"WSD44380\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117566,\n                \"pjs_name\": \"B4118 BIRMINGHAM ROAD.\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170366,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1458,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR129\",\n                        \"pjhl_description\": \"Montrcon tri axle extender flat trailer\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1459,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR130\",\n                        \"pjhl_description\": \"TWINN AXLE DOLLY TRAILER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 969,\n                \"pjh_contractnumber\": \"WSD44381\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117554,\n                \"pjs_name\": \"BROMFORD INTERMEDIATE SHAFT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170367,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1460,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"HA\",\n                        \"pjhl_stockno\": \"X\",\n                        \"pjhl_description\": \"CONCRETE CRUSHING BUCKET FOR EX25T163\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 970,\n                \"pjh_contractnumber\": \"WSD44382\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13347,\n                \"pjc_name\": \"COLAS LIMITED -COL GBR0005 C316\",\n                \"pjs_id\": 117610,\n                \"pjs_name\": \"A41 CHOWLEY\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170370,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1461,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BACKH\",\n                        \"pjhl_stockno\": \"3CX21\",\n                        \"pjhl_description\": \"JCB 3CX BACKHOE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1462,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR8\",\n                        \"pjhl_stockno\": \"BR533\",\n                        \"pjhl_description\": \"SB302 ATLAS COPCO BREAKER 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 971,\n                \"pjh_contractnumber\": \"SDW86648\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10539,\n                \"pjc_name\": \"BARHALE LIMITED 438\",\n                \"pjs_id\": 117596,\n                \"pjs_name\": \"COT- WARE\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170374,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1463,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC1.5\",\n                        \"pjhl_stockno\": \"EX2T20\",\n                        \"pjhl_description\": \"1.9 TONNE HITACHI ZX19U-5A EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1464,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR21\",\n                        \"pjhl_description\": \"IFOR WILLAIMS 1.5T TRAILER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 972,\n                \"pjh_contractnumber\": \"SDW86649\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12640,\n                \"pjc_name\": \"HOCHTIEF MURPHY JOINT VENTURE H147\",\n                \"pjs_id\": 117678,\n                \"pjs_name\": \"ELTHAM TUNNEL HEADHOUSE\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170376,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1465,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH4\",\n                        \"pjhl_stockno\": \"TH4M42\",\n                        \"pjhl_description\": \"4 MTR JCB 520-40 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 973,\n                \"pjh_contractnumber\": \"PH84575\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12547,\n                \"pjc_name\": \"BAUER KELLER JV B210\",\n                \"pjs_id\": 117600,\n                \"pjs_name\": \"WINDMILL LANE GREEN OVERBRIDGE\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170379,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1466,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T43\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 974,\n                \"pjh_contractnumber\": \"PH84576\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117631,\n                \"pjs_name\": \"ETTON COMPOUND- PE6\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170381,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1467,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T236\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 975,\n                \"pjh_contractnumber\": \"PH84577\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117629,\n                \"pjs_name\": \"ETTON COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170389,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1468,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T20\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 976,\n                \"pjh_contractnumber\": \"SDW86663\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11254,\n                \"pjc_name\": \"A R DEMOLITION LTD A008\",\n                \"pjs_id\": 117501,\n                \"pjs_name\": \"LEIGHTON BUZZARD - LU7\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170399,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1469,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ133\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1470,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HSHEARS\",\n                        \"pjhl_stockno\": \"XHSHEARS\",\n                        \"pjhl_description\": \"HYD SHEARS FOR 14T EXC\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1471,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB107\",\n                        \"pjhl_description\": \"MG1000 EPIROC SELECTOR GRAB 13T/20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 977,\n                \"pjh_contractnumber\": \"WSD44385\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10901,\n                \"pjc_name\": \"ODG PLANT HIRE LIMITED O049\",\n                \"pjs_id\": 117775,\n                \"pjs_name\": \"GALLDRIS SERVICES LIMITED\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170402,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1472,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15LR\",\n                        \"pjhl_stockno\": \"EX15TLR11\",\n                        \"pjhl_description\": \"CAT313GC  (LONG REACH 12M) EXCAVATOR 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 978,\n                \"pjh_contractnumber\": \"NSD8519\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117507,\n                \"pjs_name\": \"NEWBRIDGE- NP11 5FH\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170407,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1473,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ103\",\n                        \"pjhl_description\": \"25 TONNE CAT325-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 979,\n                \"pjh_contractnumber\": \"WSD44388\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13417,\n                \"pjc_name\": \"HML UK CONSTRUCTION LTD H164\",\n                \"pjs_id\": 117677,\n                \"pjs_name\": \"HML UK,\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170409,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1474,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N46\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1475,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSBICD\",\n                        \"pjhl_description\": \"CAT EARTHWORKS BASE INSTALL KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1476,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"GPSACC\",\n                        \"pjhl_stockno\": \"GPSVRSLI\",\n                        \"pjhl_description\": \"GPS VRS LICENCE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 980,\n                \"pjh_contractnumber\": \"WPH43901\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11274,\n                \"pjc_name\": \"VOLKERLASER LIMITED V001\",\n                \"pjs_id\": 117859,\n                \"pjs_name\": \"M6 STEWARDS WOOD NB\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170410,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1477,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T43\",\n                        \"pjhl_description\": \"14 TONNE HITACHI ZX145W-6 RUBBER DUCK 2 Piece Boom\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1478,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"360CAMERA1\",\n                        \"pjhl_description\": \"CAMERA 360 RECORDING\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1479,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR158\",\n                        \"pjhl_description\": \"MSB MSB400HS BREAKER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 981,\n                \"pjh_contractnumber\": \"PH84584\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 117655,\n                \"pjs_name\": \"EPSOM - KT19\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170413,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1480,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1481,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T175\",\n                        \"pjhl_description\": \"5 TONNE CAT305 07A CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 982,\n                \"pjh_contractnumber\": \"SDW86664\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117506,\n                \"pjs_name\": \"KENTISH TOWN - NW5\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170414,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1482,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS04\",\n                        \"pjhl_description\": \"6 TONNE DUMPER P/SWIVEL THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 983,\n                \"pjh_contractnumber\": \"WPH43902\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11772,\n                \"pjc_name\": \"EBSFORD ENVIRONMENTAL LTD E015\",\n                \"pjs_id\": 117640,\n                \"pjs_name\": \"HAGG LANE\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170415,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1483,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T10\",\n                        \"pjhl_description\": \"CA3500D ATLAS COPCO SELF PROPELLED ROLLER 13T\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:10\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 984,\n                \"pjh_contractnumber\": \"WPH43903\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117551,\n                \"pjs_name\": \"DUDSON MILL ROAD - B8\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170417,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1484,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1485,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T294\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313GC EXCAVATOR LOW EMISSION TRIMBLE EARTHWORKS  READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1486,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 985,\n                \"pjh_contractnumber\": \"WSD44391\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11029,\n                \"pjc_name\": \"VIBRO MENARD LIMITED V027\",\n                \"pjs_id\": 117843,\n                \"pjs_name\": \"ASPINALL WAY\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170419,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1487,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"LSHOV\",\n                        \"pjhl_stockno\": \"LS09\",\n                        \"pjhl_description\": \"950 GC CATERPILLAR LOADING SHOVEL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 986,\n                \"pjh_contractnumber\": \"WSD44394\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11254,\n                \"pjc_name\": \"A R DEMOLITION LTD A008\",\n                \"pjs_id\": 117502,\n                \"pjs_name\": \"EDWARD STREET HOSPITAL\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170422,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1488,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T137\",\n                        \"pjhl_description\": \"915E DM LIUGONG EXCAVATOR (DEMO)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1489,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB104\",\n                        \"pjhl_description\": \"MG1000 EPIROC SELECTOR GRAB 13T/20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 987,\n                \"pjh_contractnumber\": \"PH84583\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11066,\n                \"pjc_name\": \"WALTERS UK LIMITED W041\",\n                \"pjs_id\": 117861,\n                \"pjs_name\": \"SOUTHAM COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170424,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1490,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T130\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336-08 EXCAVATOR TRIMBLE EARTHWORKS READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 988,\n                \"pjh_contractnumber\": \"PH84579\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11843,\n                \"pjc_name\": \"P C CONSTRUCTION LIMITED P032\",\n                \"pjs_id\": 117778,\n                \"pjs_name\": \"DOVER- CT16\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170426,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1491,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ213\",\n                        \"pjhl_description\": \"PC138US-11 KOMATSU EXCAVATOR SHORT TAIL SWING\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 989,\n                \"pjh_contractnumber\": \"WSD44395\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117533,\n                \"pjs_name\": \"A52 OLD SOMERBY\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170428,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1492,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"COMPAC\",\n                        \"pjhl_stockno\": \"CP59\",\n                        \"pjhl_description\": \"EPIROC HC1050 Compactor Plate 20 TON-30 TON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 990,\n                \"pjh_contractnumber\": \"SDW86661\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11843,\n                \"pjc_name\": \"P C CONSTRUCTION LIMITED P032\",\n                \"pjs_id\": 117778,\n                \"pjs_name\": \"DOVER- CT16\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170430,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1493,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"1116\",\n                        \"pjhl_description\": \"CATERPILLAR CB24 ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 991,\n                \"pjh_contractnumber\": \"WSD44397\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117533,\n                \"pjs_name\": \"A52 OLD SOMERBY\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170431,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1494,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR24\",\n                        \"pjhl_stockno\": \"BR990\",\n                        \"pjhl_description\": \"EPIROC MB1200E BREAKER  20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 992,\n                \"pjh_contractnumber\": \"SDW86638\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117532,\n                \"pjs_name\": \"PETERBOROUGH- PE6\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170432,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1495,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T36\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1496,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 993,\n                \"pjh_contractnumber\": \"WSD44399\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12710,\n                \"pjc_name\": \"SOIL SCIENCE LIMITED S217\",\n                \"pjs_id\": 117809,\n                \"pjs_name\": \"LEA LANE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170433,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1497,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T167\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D EARTH WORKS READY\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 994,\n                \"pjh_contractnumber\": \"WSD44400\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12710,\n                \"pjc_name\": \"SOIL SCIENCE LIMITED S217\",\n                \"pjs_id\": 117809,\n                \"pjs_name\": \"LEA LANE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170436,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1498,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DBOWSER\",\n                        \"pjhl_stockno\": \"DB84\",\n                        \"pjhl_description\": \"8000/1000 Litres Diesel/Adblue. TOWABLE DIESEL BOWSER - Fuel Proof\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 995,\n                \"pjh_contractnumber\": \"ASD3934\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13419,\n                \"pjc_name\": \"ARDERSIER PORT (SCOTLAND LTD) A218\",\n                \"pjs_id\": 117524,\n                \"pjs_name\": \"ARDERSIER PORT\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170438,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1499,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER19\",\n                        \"pjhl_stockno\": \"RO19T28\",\n                        \"pjhl_description\": \"CAT CS78B SELF PROPELLED ROLLER 19T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 996,\n                \"pjh_contractnumber\": \"WSD44402\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11239,\n                \"pjc_name\": \"VOLKER STEVIN INFRASTRUCTURE V017\",\n                \"pjs_id\": 117856,\n                \"pjs_name\": \"PRESTON AND SOUTH RIBBLE FRMS\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170441,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1500,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR117\",\n                        \"pjhl_description\": \"22FT. LOW LOADER TRAILER 19T C/W Hydraulic Ramps (SLS)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 997,\n                \"pjh_contractnumber\": \"WSD44403\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10741,\n                \"pjc_name\": \"FORKERS LIMITED F059\",\n                \"pjs_id\": 117658,\n                \"pjs_name\": \"RIVER NOE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170443,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1501,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T179\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 998,\n                \"pjh_contractnumber\": \"WSD44404\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10574,\n                \"pjc_name\": \"SUNBELT RENTALS LTD (EA) A043\",\n                \"pjs_id\": 117819,\n                \"pjs_name\": \"WATERFRONT GOLF CLUB\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170446,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1502,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T40\",\n                        \"pjhl_description\": \"5 TONNE HITACHI ZX55U-5A  EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1503,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"BIO OIL\",\n                        \"pjhl_description\": \"BIO DEGRADABLE OIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 999,\n                \"pjh_contractnumber\": \"WPH43908\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11053,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION B056\",\n                \"pjs_id\": 117541,\n                \"pjs_name\": \"A63 CASTLE STREET PROJECT.\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170454,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1504,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK9\",\n                        \"pjhl_stockno\": \"RD9T63\",\n                        \"pjhl_description\": \"JCB110W HYDRADIG WHEELED EXCAVATOR 11 TONNE\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1000,\n                \"pjh_contractnumber\": \"SDW86672\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13325,\n                \"pjc_name\": \"JD EXCAVATIONS TYRONE LIMITED J117\",\n                \"pjs_id\": 117695,\n                \"pjs_name\": \"ARLESEY - SG15\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170460,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1505,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM9\",\n                        \"pjhl_stockno\": \"DU9T42\",\n                        \"pjhl_description\": \"DW90 WACKER NEUSON STRAIGHT DUMPER 9T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1001,\n                \"pjh_contractnumber\": \"SDW86673\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10574,\n                \"pjc_name\": \"SUNBELT RENTALS LTD (EA) A043\",\n                \"pjs_id\": 117816,\n                \"pjs_name\": \"SCOTS FLOAT DEPOT- RYE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170463,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1506,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ108\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1002,\n                \"pjh_contractnumber\": \"NSD8513\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13433,\n                \"pjc_name\": \"CK RAIL SOLUTIONS LTD C323\",\n                \"pjs_id\": 117606,\n                \"pjs_name\": \"DORSET - SP8 5DR\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170469,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1507,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T99\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1003,\n                \"pjh_contractnumber\": \"WSD44406\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12844,\n                \"pjc_name\": \"JOHN SISK & SONS (HOLDINGS) LI S115\",\n                \"pjs_id\": 117703,\n                \"pjs_name\": \"WATERS END\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170471,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1508,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T103\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1004,\n                \"pjh_contractnumber\": \"SDW86675\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 118015,\n                \"pjs_name\": \"WEST CHISENBURY - SN9\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170474,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1509,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRACK12\",\n                        \"pjhl_stockno\": \"XDTRACK12\",\n                        \"pjhl_description\": \"11T TRACKED DUMPER MST2200VDR (NTDH)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1510,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"CAMERA360\",\n                        \"pjhl_description\": \"360 VISION CAMERA\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1005,\n                \"pjh_contractnumber\": \"WSD44407\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11466,\n                \"pjc_name\": \"SKANSKA CIVIL ENGINEERING S011\",\n                \"pjs_id\": 118123,\n                \"pjs_name\": \"CLOCK LANE\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170476,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1511,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR688\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1006,\n                \"pjh_contractnumber\": \"SDW86676\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11620,\n                \"pjc_name\": \"RK AIR LIMITED R112\",\n                \"pjs_id\": 117797,\n                \"pjs_name\": \"HEATHROW TERMINAL 5\",\n                \"pjh_deliverydate\": \"2023-10-01\",\n                \"syrinx_id\": 170477,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1512,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T69\",\n                        \"pjhl_description\": \"BOMAG BW120AD-5 ROLLER STAGE V\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1007,\n                \"pjh_contractnumber\": \"SDW86677\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10574,\n                \"pjc_name\": \"SUNBELT RENTALS LTD (EA) A043\",\n                \"pjs_id\": 117917,\n                \"pjs_name\": \"BURNHAM OVERY\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170480,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1008,\n                \"pjh_contractnumber\": \"SDW86682\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11860,\n                \"pjc_name\": \"HERCULES SITE SERVICES PLC H032\",\n                \"pjs_id\": 117894,\n                \"pjs_name\": \"ETTON WORKS COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170481,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1513,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T160\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1009,\n                \"pjh_contractnumber\": \"NSD8526\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 117748,\n                \"pjs_name\": \"CARDIFF - CF14 2FP\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170482,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1514,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T85\",\n                        \"pjhl_description\": \"CAT CS66B ROLLER SELF PROPELLED 15T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1010,\n                \"pjh_contractnumber\": \"NSD8514\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13433,\n                \"pjc_name\": \"CK RAIL SOLUTIONS LTD C323\",\n                \"pjs_id\": 117606,\n                \"pjs_name\": \"DORSET - SP8 5DR\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170489,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1515,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"XROLLER\",\n                        \"pjhl_description\": \"135 ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1011,\n                \"pjh_contractnumber\": \"WSD44408\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117911,\n                \"pjs_name\": \"J MURPHY COMPOUND,\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170490,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1516,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T139\",\n                        \"pjhl_description\": \"5 TONNE CAT305E2 CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1517,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR727\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1012,\n                \"pjh_contractnumber\": \"WPH43911\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117686,\n                \"pjs_name\": \"ROUNDHILL STW\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170498,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1518,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T26\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1013,\n                \"pjh_contractnumber\": \"WSD44409\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10822,\n                \"pjc_name\": \"KIER INTEGRATED SERVICES LT K060\",\n                \"pjs_id\": 117715,\n                \"pjs_name\": \"COLNE BARROWFORD RESERVOIR\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170501,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1519,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T187\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1520,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"AUGER\",\n                        \"pjhl_stockno\": \"XAUGER\",\n                        \"pjhl_description\": \"Auger\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1014,\n                \"pjh_contractnumber\": \"SDW86679\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11057,\n                \"pjc_name\": \"MCRAIL CONSTRUCTION LIMITED M209\",\n                \"pjs_id\": 117903,\n                \"pjs_name\": \"HORSLEY CROSS- CO11\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170503,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1521,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T286\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320GC EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1015,\n                \"pjh_contractnumber\": \"SDW86678\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11057,\n                \"pjc_name\": \"MCRAIL CONSTRUCTION LIMITED M209\",\n                \"pjs_id\": 117903,\n                \"pjs_name\": \"HORSLEY CROSS- CO11\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170504,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1522,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ191\",\n                        \"pjhl_description\": \"CAT315-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1016,\n                \"pjh_contractnumber\": \"WPH43912\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117876,\n                \"pjs_name\": \"COLESHILL SOUTH\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170505,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1523,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (MIN 9 PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1524,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T79\",\n                        \"pjhl_description\": \"3 TONNE HITACHI ZX26U-5A EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1525,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR908\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1526,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"RENTV\",\n                        \"pjhl_stockno\": \"RV18\",\n                        \"pjhl_description\": \"HT3400M EXHAUST FILTER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1017,\n                \"pjh_contractnumber\": \"SDW84393/L\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11718,\n                \"pjc_name\": \"MGROUP SERVICES PLANT M098\",\n                \"pjs_id\": 117905,\n                \"pjs_name\": \"CHESHUNT - EN8\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170506,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1527,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR516\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1018,\n                \"pjh_contractnumber\": \"PH84597\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13466,\n                \"pjc_name\": \"BETHELL UTILITY SERVICES LTD B291\",\n                \"pjs_id\": 117883,\n                \"pjs_name\": \"BROMLEY - BR1\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170507,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1528,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BACKH\",\n                        \"pjhl_stockno\": \"3CX34\",\n                        \"pjhl_description\": \"JCB ECOMAX 3CX BACKHOE - SERVO LEVER\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1019,\n                \"pjh_contractnumber\": \"SDW86693\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10708,\n                \"pjc_name\": \"M & A DOOCEY CIVIL ENGINEERING D091\",\n                \"pjs_id\": 117899,\n                \"pjs_name\": \"CAMBRIDGE - CB24 5PJ\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170509,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1529,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM3S\",\n                        \"pjhl_stockno\": \"DU3TS23\",\n                        \"pjhl_description\": \"3 TONNE SWIVEL DUMPER MECALAC TA3SH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1530,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1020,\n                \"pjh_contractnumber\": \"WPH43913\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13296,\n                \"pjc_name\": \"GT ENVIRONMENT - OU 5311 G175\",\n                \"pjs_id\": 117890,\n                \"pjs_name\": \"SPALDING\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170510,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1531,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T87\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1532,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE74\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 8T 2000KG\\r\\nCONQUIP 13/21 TONNE EXCAVATOR FORKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1021,\n                \"pjh_contractnumber\": \"WSD44410\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117865,\n                \"pjs_name\": \"WOODCOCK FOLD\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170511,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1533,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB33\",\n                        \"pjhl_description\": \"VTN MD140 SELECTOR GRAB 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1022,\n                \"pjh_contractnumber\": \"WPH43914\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11239,\n                \"pjc_name\": \"VOLKER STEVIN INFRASTRUCTURE V017\",\n                \"pjs_id\": 117856,\n                \"pjs_name\": \"PRESTON AND SOUTH RIBBLE FRMS\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170512,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1534,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T289\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320-07A EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1023,\n                \"pjh_contractnumber\": \"SDW86694\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11860,\n                \"pjc_name\": \"HERCULES SITE SERVICES PLC H032\",\n                \"pjs_id\": 117894,\n                \"pjs_name\": \"ETTON WORKS COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170513,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1535,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD6S\",\n                        \"pjhl_stockno\": \"DVD6TS40\",\n                        \"pjhl_description\": \"DV60 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1536,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1537,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1024,\n                \"pjh_contractnumber\": \"PH84598\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12054,\n                \"pjc_name\": \"BARHALE CONSTRUCTION SERVICES B104\",\n                \"pjs_id\": 117879,\n                \"pjs_name\": \"RICKMANSWORTH-WD3\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170514,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1538,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC6ZT\",\n                        \"pjhl_stockno\": \"EXC6ZT-OPH\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR) - 6 Tonne Excavator Zero Tail\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1025,\n                \"pjh_contractnumber\": \"WPH43915\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11774,\n                \"pjc_name\": \"WGERD LIMITED W028\",\n                \"pjs_id\": 117940,\n                \"pjs_name\": \"SHELL HORSFORTH,,\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170519,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1539,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T185\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1540,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR615\",\n                        \"pjhl_description\": \"MSB SAGA 30 BREAKER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1026,\n                \"pjh_contractnumber\": \"SDW86695\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10967,\n                \"pjc_name\": \"JOHN SISK & SON (HOLDINGS) LTD S100\",\n                \"pjs_id\": 117895,\n                \"pjs_name\": \"A14 J47A - J49\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170524,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1541,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T08\",\n                        \"pjhl_description\": \"CATERPILLAR CB24B ROLLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1027,\n                \"pjh_contractnumber\": \"SDW86696\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10532,\n                \"pjc_name\": \"ERITH PLANT SERVICES LIMITED 319\",\n                \"pjs_id\": 118010,\n                \"pjs_name\": \"TILBURY - RM18 8UJ\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170527,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1542,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ5K15\",\n                        \"pjhl_description\": \"Dozer D3 LGP NXT GEN.CATERPILLAR STAGE V\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1543,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCKTEWD\",\n                        \"pjhl_description\": \"TRIMBLE EARTHWORKS CAB KIT (DOZER)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1028,\n                \"pjh_contractnumber\": \"PH84599\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10532,\n                \"pjc_name\": \"ERITH PLANT SERVICES LIMITED 319\",\n                \"pjs_id\": 118010,\n                \"pjs_name\": \"TILBURY - RM18 8UJ\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170528,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1544,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK25\",\n                        \"pjhl_stockno\": \"DT25T19\",\n                        \"pjhl_description\": \"25 TONNE DUMP TRUCK VOLVO A25G\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1029,\n                \"pjh_contractnumber\": \"WSD44418\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10747,\n                \"pjc_name\": \"UNITED LIVING ENERGY LIMITED F076\",\n                \"pjs_id\": 117937,\n                \"pjs_name\": \"TX35\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170529,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1545,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"COMPAC\",\n                        \"pjhl_stockno\": \"CP35\",\n                        \"pjhl_description\": \"PRODEM PHC150 COMPACTION PLATE (13T/20T)\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1030,\n                \"pjh_contractnumber\": \"WSD44419\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117912,\n                \"pjs_name\": \"WORMINGTON COMPRESSOR STATION\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170532,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1546,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T191\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1547,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACKS\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1031,\n                \"pjh_contractnumber\": \"WPH43917\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12562,\n                \"pjc_name\": \"BOELS RENTAL LIMITED B213\",\n                \"pjs_id\": 117884,\n                \"pjs_name\": \"SMULDERS UK\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170533,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1548,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ6N38\",\n                        \"pjhl_description\": \"Dozer D5 (Next Gen) c/w 3D Earthworks Full Kit LGP CAT Low Emission (FOLDING BLADE)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1032,\n                \"pjh_contractnumber\": \"SDW86697\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 117913,\n                \"pjs_name\": \"BURDETT ROAD - E3\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170534,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1549,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK5\",\n                        \"pjhl_stockno\": \"RD6T05\",\n                        \"pjhl_description\": \"EW65 WACKER NEUSON WHEELED EXCAVATOR WITH BLADE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1550,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR765\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1033,\n                \"pjh_contractnumber\": \"WSD44420\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12622,\n                \"pjc_name\": \"SEYMOUR CIVIL ENGINEERING CONT S210\",\n                \"pjs_id\": 117914,\n                \"pjs_name\": \"OLD WHITTINGTON STW (TIL DOUGLAS COMP0\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170536,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1551,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T50\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1034,\n                \"pjh_contractnumber\": \"NSD8522\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10574,\n                \"pjc_name\": \"SUNBELT RENTALS LTD (EA) A043\",\n                \"pjs_id\": 117918,\n                \"pjs_name\": \"DEVON - PL20 7EX\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170538,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1552,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T238\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1553,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"XBUCKOTH\",\n                        \"pjhl_description\": \"WEEDCUTTING BUCKET\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1035,\n                \"pjh_contractnumber\": \"NPH4486\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12141,\n                \"pjc_name\": \"AMEY RAIL LIMITED R260\",\n                \"pjs_id\": 117951,\n                \"pjs_name\": \"TAFFS WELL - CF15 7QR\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170539,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1554,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T95\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1036,\n                \"pjh_contractnumber\": \"SDW86698\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12992,\n                \"pjc_name\": \"COSTAIN LTD (SPA) C288\",\n                \"pjs_id\": 117629,\n                \"pjs_name\": \"ETTON COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170540,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1555,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"BKT11\",\n                        \"pjhl_description\": \"138\\\" BACK FILL BLADE 40T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1037,\n                \"pjh_contractnumber\": \"SDW86703\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11860,\n                \"pjc_name\": \"HERCULES SITE SERVICES PLC H032\",\n                \"pjs_id\": 118031,\n                \"pjs_name\": \"ROYSTON- SG8\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170550,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1556,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC1.5\",\n                        \"pjhl_stockno\": \"EX2T64\",\n                        \"pjhl_description\": \"1.5 TONNE CAT 301.5 EXCAVATOR C/w Quick Hitch\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1557,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT4\",\n                        \"pjhl_description\": \"SUMMIT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1558,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1038,\n                \"pjh_contractnumber\": \"SDW86704\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117958,\n                \"pjs_name\": \"PETERBOROUGH - PE6 7HR\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170551,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1559,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24B\",\n                        \"pjhl_stockno\": \"EX25T242\",\n                        \"pjhl_description\": \"24 TONNE CATERPILLAR 320 EXCAVATOR 3D BASE INSTALL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1560,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"HEIGHT\",\n                        \"pjhl_stockno\": \"HEIGHT1\",\n                        \"pjhl_description\": \"CAT HEIGHT RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1561,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW1\",\n                        \"pjhl_description\": \"CAT SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1562,\n                        \"pjhl_seq\": 4,\n                        \"pjhl_categorycode\": \"HDETECT\",\n                        \"pjhl_stockno\": \"DETECT2\",\n                        \"pjhl_description\": \"SPILLARD HDS DETECTION SYSTEM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1563,\n                        \"pjhl_seq\": 5,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1039,\n                \"pjh_contractnumber\": \"SDW86705\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11068,\n                \"pjc_name\": \"P FLANNERY INT001\",\n                \"pjs_id\": 118106,\n                \"pjs_name\": \"BIRMINGHAM\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170552,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1040,\n                \"pjh_contractnumber\": \"WPH43921\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11022,\n                \"pjc_name\": \"VOLKERFITZPATRICK LIMITED V018\",\n                \"pjs_id\": 118136,\n                \"pjs_name\": \"SIEMENS BLADE FACTORY\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170553,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1564,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T148\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1041,\n                \"pjh_contractnumber\": \"SDW86701\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13314,\n                \"pjc_name\": \"APROLIS UK LIMITED A211\",\n                \"pjs_id\": 117952,\n                \"pjs_name\": \"PETERBOROUGH - PE1\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170554,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1565,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T185\",\n                        \"pjhl_description\": \"5 TONNE CAT305 07A CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1566,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR526\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1042,\n                \"pjh_contractnumber\": \"SDW86702\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13314,\n                \"pjc_name\": \"APROLIS UK LIMITED A211\",\n                \"pjs_id\": 117952,\n                \"pjs_name\": \"PETERBOROUGH - PE1\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170555,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1567,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS56\",\n                        \"pjhl_description\": \"TA6000SH MECALAC 6 TONNE SWIVEL DUMPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1043,\n                \"pjh_contractnumber\": \"SDW86707\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10535,\n                \"pjc_name\": \"FOUNDATION DEVELOPMENTS LTD 402\",\n                \"pjs_id\": 118021,\n                \"pjs_name\": \"YORK WAY ESTATE- N7\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170556,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1568,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T64\",\n                        \"pjhl_description\": \"3 TONNE U27-4 KUBOTA EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1569,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR802\",\n                        \"pjhl_description\": \"SB152 ATLAS COPCO BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1044,\n                \"pjh_contractnumber\": \"PH84606\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 118094,\n                \"pjs_name\": \"LONDON- NW5\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170559,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1570,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BACKH\",\n                        \"pjhl_stockno\": \"3CX35\",\n                        \"pjhl_description\": \"JCB ECOMAX 3CX BACKHOE - SERVO LEVERS\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1045,\n                \"pjh_contractnumber\": \"WSD44422\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117966,\n                \"pjs_name\": \"CURZON STREET COMPOUND\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170565,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1571,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR923\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1046,\n                \"pjh_contractnumber\": \"WPH43924\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 118004,\n                \"pjs_name\": \"BANK FARM\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170566,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1572,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (MIN 9 PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1573,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK64\",\n                        \"pjhl_description\": \"JOHN DEERE 6195M TRACTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1574,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"XTRACTORS\",\n                        \"pjhl_description\": \"WATER PIPE PLOUGH 32MM\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1047,\n                \"pjh_contractnumber\": \"NSD8531\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12379,\n                \"pjc_name\": \"WALES & BORDER COUNTIES PLANT W112\",\n                \"pjs_id\": 118138,\n                \"pjs_name\": \"NEWPORT - NP20 6YN\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170567,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1575,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"RDUCK14\",\n                        \"pjhl_stockno\": \"RD13T25\",\n                        \"pjhl_description\": \"14 TONNE M314F CAT WHEELED EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1576,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"XEXCPFK\",\n                        \"pjhl_description\": \"PALLET FORKS FOR 14T DUCK\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1048,\n                \"pjh_contractnumber\": \"WPH43925\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 118004,\n                \"pjs_name\": \"BANK FARM\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170568,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1577,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1578,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T116\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1049,\n                \"pjh_contractnumber\": \"WPH43926\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117972,\n                \"pjs_name\": \"M6 SOUTH BOUND ACCESS\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170570,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1579,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1580,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXC40TLR\",\n                        \"pjhl_stockno\": \"EX40TLR01\",\n                        \"pjhl_description\": \"KOMATSU PC360LC-11 40 TONNE 22M LONG REACH EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1050,\n                \"pjh_contractnumber\": \"WSD44423\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11312,\n                \"pjc_name\": \"J N BENTLEY LTD B180\",\n                \"pjs_id\": 117686,\n                \"pjs_name\": \"ROUNDHILL STW\",\n                \"pjh_deliverydate\": \"2023-10-02\",\n                \"syrinx_id\": 170571,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1581,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T45\",\n                        \"pjhl_description\": \"5 TONNE CAT305 EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1582,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR915\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1051,\n                \"pjh_contractnumber\": \"WPH43929\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 117633,\n                \"pjs_name\": \"SPERNAL STW\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170579,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1583,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK12\",\n                        \"pjhl_stockno\": \"DT12T17\",\n                        \"pjhl_description\": \"912F HYDREMA DUMP TRUCK STRAIGHT\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1052,\n                \"pjh_contractnumber\": \"WSD44425\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 117633,\n                \"pjs_name\": \"SPERNAL STW\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170580,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1584,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T25\",\n                        \"pjhl_description\": \"CC1200 ROLLER ATLAS COPCO\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1053,\n                \"pjh_contractnumber\": \"NSD8533\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12825,\n                \"pjc_name\": \"KNIGHTON COUNTRYSIDE MGT LTD K030\",\n                \"pjs_id\": 118071,\n                \"pjs_name\": \"BRISTOL - BS35 4BG\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170586,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1585,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T182\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313-07 EXCAVATOR LOW EMISSION 2D EARTHWORKS  FACTORY FITTED\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1586,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GRABSEL\",\n                        \"pjhl_stockno\": \"GRAB103\",\n                        \"pjhl_description\": \"MG1000 EPIROC SELECTOR GRAB 13T/20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1054,\n                \"pjh_contractnumber\": \"WPH43930\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12116,\n                \"pjc_name\": \"COSTAIN LTD C261\",\n                \"pjs_id\": 118003,\n                \"pjs_name\": \"NEWTON LANE\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170588,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1587,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC24ZT\",\n                        \"pjhl_stockno\": \"EX25TZ86\",\n                        \"pjhl_description\": \"25 TONNE CAT325-07 EXCAVATOR ZERO TAIL 3D EARTHWORKS READY\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1588,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR24\",\n                        \"pjhl_stockno\": \"BR836\",\n                        \"pjhl_description\": \"MB1200E EPIROC BREAKER 20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1055,\n                \"pjh_contractnumber\": \"WSD44428\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13333,\n                \"pjc_name\": \"JN BENTLEY LTD (SPA) B272\",\n                \"pjs_id\": 118047,\n                \"pjs_name\": \"MAIN STREET\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170590,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1589,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BUCKOTH\",\n                        \"pjhl_stockno\": \"BV43\",\n                        \"pjhl_description\": \"V-BUCKET 40 Ton 2400MMX1500MMX1100mM HIGH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1056,\n                \"pjh_contractnumber\": \"WSD44430\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117583,\n                \"pjs_name\": \"MIRFIELD STATION\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170593,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1590,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9S\",\n                        \"pjhl_stockno\": \"DVD9TS25\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW SWIVEL DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1057,\n                \"pjh_contractnumber\": \"WPH43931\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13286,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0090) LA B263\",\n                \"pjs_id\": 117986,\n                \"pjs_name\": \"HOWLEY STREET\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170594,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1591,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T236\",\n                        \"pjhl_description\": \"(XW5)9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1592,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"RCI\",\n                        \"pjhl_description\": \"RCI INDICATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1058,\n                \"pjh_contractnumber\": \"WPH43932\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11280,\n                \"pjc_name\": \"COLLINS EARTHWORKS LTD C012\",\n                \"pjs_id\": 117996,\n                \"pjs_name\": \"CRACKLEY LANE OVERBRIDGE SATELITTE COMP\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170596,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1593,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TRACTORS\",\n                        \"pjhl_stockno\": \"TK127\",\n                        \"pjhl_description\": \"JOHN DEERE 6155M TRACTOR C/w FRONT LINKAGE\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1594,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"WBOWSER\",\n                        \"pjhl_stockno\": \"DB41\",\n                        \"pjhl_description\": \"MAJOR 1700 BOWSER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1059,\n                \"pjh_contractnumber\": \"WSD44431\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12756,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED (S K098\",\n                \"pjs_id\": 118067,\n                \"pjs_name\": \"ACESS 10A\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170599,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1595,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRUCK20\",\n                        \"pjhl_stockno\": \"DT20T31\",\n                        \"pjhl_description\": \"B20E BELL DUMP TRUCK C/W TAILGATE & Weigh Loader\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1060,\n                \"pjh_contractnumber\": \"WSD44432\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11393,\n                \"pjc_name\": \"JMC (NORTH WEST) LTD J084\",\n                \"pjs_id\": 118045,\n                \"pjs_name\": \"TOFT ROAD\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170600,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1596,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ111\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1597,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"RUBB13\",\n                        \"pjhl_description\": \"RUBBER TRACK 13 - 15 tonne\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1061,\n                \"pjh_contractnumber\": \"WPH43934\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11203,\n                \"pjc_name\": \"QTS GROUP LTD Q002\",\n                \"pjs_id\": 117791,\n                \"pjs_name\": \"PINFOLD LANE\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170601,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1598,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"TELH6\",\n                        \"pjhl_stockno\": \"TH6M04\",\n                        \"pjhl_description\": \"6 METER  JCB 525/60 Telehandler\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1062,\n                \"pjh_contractnumber\": \"WPH43935\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 118054,\n                \"pjs_name\": \"A429 ROAD HEAD\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170602,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1599,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1063,\n                \"pjh_contractnumber\": \"WPH43936\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 118056,\n                \"pjs_name\": \"A429 ROAD HEAD,\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170603,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1600,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1601,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPALLOW\",\n                        \"pjhl_description\": \"OPERATOR ALLOWANCE FOR LODGE OR TRAVEL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1064,\n                \"pjh_contractnumber\": \"WPH43937\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13212,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED  - HS2 K031\",\n                \"pjs_id\": 118056,\n                \"pjs_name\": \"A429 ROAD HEAD,\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170604,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1602,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1603,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPALLOW\",\n                        \"pjhl_description\": \"OPERATOR ALLOWANCE FOR LODGE OR TRAVEL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1065,\n                \"pjh_contractnumber\": \"WPH43938\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11023,\n                \"pjc_name\": \"VINCI CONSTRUCTION UK LIMITED V019\",\n                \"pjs_id\": 118133,\n                \"pjs_name\": \"DURHAM EMERGANCY DEPT\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170607,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1604,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (MIN 8 PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1066,\n                \"pjh_contractnumber\": \"WSD44435\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12382,\n                \"pjc_name\": \"BALFOUR BEATTY VINCI JV - HS2 B095\",\n                \"pjs_id\": 117550,\n                \"pjs_name\": \"A38 OVERBRIDGE\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170608,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1605,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC5ZT\",\n                        \"pjhl_stockno\": \"EX5T131\",\n                        \"pjhl_description\": \"5 TONNE CAT305E2 CR EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1606,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR5-8\",\n                        \"pjhl_stockno\": \"BR454\",\n                        \"pjhl_description\": \"SB202 ATLAS COPCO BREAKER 5-6T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1067,\n                \"pjh_contractnumber\": \"SDW86720\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10926,\n                \"pjc_name\": \"POD-TRAK LIMITED P203\",\n                \"pjs_id\": 118110,\n                \"pjs_name\": \"CHELMSFORD - CM2\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170609,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1607,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"THLE17\",\n                        \"pjhl_stockno\": \"TH17M20\",\n                        \"pjhl_description\": \"17 MTR JCB 540-170 TELEHANDLER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1608,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"FORKEX\",\n                        \"pjhl_stockno\": \"FE265\",\n                        \"pjhl_description\": \"125X50X1800MM FORK EXTENSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1068,\n                \"pjh_contractnumber\": \"WSD44436\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11393,\n                \"pjc_name\": \"JMC (NORTH WEST) LTD J084\",\n                \"pjs_id\": 118044,\n                \"pjs_name\": \"WARRINGTON ROAD\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170610,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1609,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T134\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1069,\n                \"pjh_contractnumber\": \"WPH43939\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12147,\n                \"pjc_name\": \"KELTBRAY PLANT LIMITED T/A K013\",\n                \"pjs_id\": 118058,\n                \"pjs_name\": \"DRAINAGE WORKS\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170612,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1610,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ181\",\n                        \"pjhl_description\": \"CAT315-07 EXCAVATOR ZERO TAIL 2D Factory Fitted\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1070,\n                \"pjh_contractnumber\": \"SDW86721\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13258,\n                \"pjc_name\": \"WHITE HORSE CONTRACTORS LIMITE W135\",\n                \"pjs_id\": 118141,\n                \"pjs_name\": \"HARWELL CAMPUS\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170615,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1611,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DOZWL\",\n                        \"pjhl_stockno\": \"DZ5K11\",\n                        \"pjhl_description\": \"Dozer D5K LGP CATERPILLAR Low Emission\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1612,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"GPSSYS\",\n                        \"pjhl_stockno\": \"GPSCK2D\",\n                        \"pjhl_description\": \"TRIMBLE 2D LASER CAB KIT\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1071,\n                \"pjh_contractnumber\": \"NSD8535\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11242,\n                \"pjc_name\": \"AMALGAMATED CONSTRUCTION LTD A006\",\n                \"pjs_id\": 117947,\n                \"pjs_name\": \"GWYNEDD - SY20 9LD\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170619,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1613,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"DU6TS57\",\n                        \"pjhl_description\": \"TA6000SH MECALAC 6 TONNE SWIVELDUMPER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1072,\n                \"pjh_contractnumber\": \"NPH4492\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11666,\n                \"pjc_name\": \"M J CHURCH (PLANT) LIMITED M040\",\n                \"pjs_id\": 118078,\n                \"pjs_name\": \"LLWYDCOED - CF44 0LX\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170628,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1614,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"LSTRACK\",\n                        \"pjhl_stockno\": \"LTS02\",\n                        \"pjhl_description\": \"CAT953 LOADING SHOVEL TRACKED\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1073,\n                \"pjh_contractnumber\": \"SDW86726\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11068,\n                \"pjc_name\": \"P FLANNERY INT001\",\n                \"pjs_id\": 118108,\n                \"pjs_name\": \"IVER HEATH- SL0\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170629,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1615,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC15B\",\n                        \"pjhl_stockno\": \"EX15T138\",\n                        \"pjhl_description\": \"15 TONNE CATERPILLAR CAT313F EXCAVATOR LOW EMISSION\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1074,\n                \"pjh_contractnumber\": \"SDW86725\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11068,\n                \"pjc_name\": \"P FLANNERY INT001\",\n                \"pjs_id\": 118108,\n                \"pjs_name\": \"IVER HEATH- SL0\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170630,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1616,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM9\",\n                        \"pjhl_stockno\": \"DU9T01\",\n                        \"pjhl_description\": \"9 TONNE STRAIGHT DUMPER THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1075,\n                \"pjh_contractnumber\": \"SDW86733\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12821,\n                \"pjc_name\": \"RIVERLINX CJV R273\",\n                \"pjs_id\": 117794,\n                \"pjs_name\": \"CANNING TOWN - E16\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170636,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1617,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T170\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1076,\n                \"pjh_contractnumber\": \"SDW86724\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11283,\n                \"pjc_name\": \"HIRETEST LIMITED H008\",\n                \"pjs_id\": 118032,\n                \"pjs_name\": \"CHIGWELL - IG7\",\n                \"pjh_deliverydate\": \"0000-00-00\",\n                \"syrinx_id\": 170637,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1618,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ90\",\n                        \"pjhl_description\": \"CAT315FL EXCAVATOR ZERO TAIL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1077,\n                \"pjh_contractnumber\": \"WSD44438\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13284,\n                \"pjc_name\": \"BAM NUTTALL LTD (BTU.0080) B261\",\n                \"pjs_id\": 117582,\n                \"pjs_name\": \"THORNHILL POWER STATION\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170642,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1619,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER13\",\n                        \"pjhl_stockno\": \"RO13T19\",\n                        \"pjhl_description\": \"CAT CS64B ROLLER SELF PROPELLED 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1078,\n                \"pjh_contractnumber\": \"WSD44439\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13207,\n                \"pjc_name\": \"HSS PROSERVICE LTD H160\",\n                \"pjs_id\": 118036,\n                \"pjs_name\": \"AVOVE LIMITED DARESBURY\",\n                \"pjh_deliverydate\": \"2023-10-03\",\n                \"syrinx_id\": 170644,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1620,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR14\",\n                        \"pjhl_stockno\": \"BR667\",\n                        \"pjhl_description\": \"MB750E ATLAS COPCO BREAKER 13T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1079,\n                \"pjh_contractnumber\": \"SDW86736\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11179,\n                \"pjc_name\": \"HB TUNNELLING LIMITED H006\",\n                \"pjs_id\": 118030,\n                \"pjs_name\": \"FAWLEY\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170646,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1621,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T269\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1080,\n                \"pjh_contractnumber\": \"WSD44440\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12710,\n                \"pjc_name\": \"SOIL SCIENCE LIMITED S217\",\n                \"pjs_id\": 117809,\n                \"pjs_name\": \"LEA LANE\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170649,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1622,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXCPFK\",\n                        \"pjhl_stockno\": \"FE142\",\n                        \"pjhl_description\": \"FORKS FOR EXCAVATOR 13T - 20T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1081,\n                \"pjh_contractnumber\": \"PH84618\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 118096,\n                \"pjs_name\": \"LONDON- EE5\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170652,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1623,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T140\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1082,\n                \"pjh_contractnumber\": \"WPH43944\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12604,\n                \"pjc_name\": \"READYPOWER TERRAWISE LTD R261\",\n                \"pjs_id\": 118116,\n                \"pjs_name\": \"SANDY LANE\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170655,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1624,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"OP-H\",\n                        \"pjhl_stockno\": \"OPHOUR\",\n                        \"pjhl_description\": \"OPERATOR ONLY (PER HOUR)\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1083,\n                \"pjh_contractnumber\": \"WSD44443\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11816,\n                \"pjc_name\": \"JJF LIMITED J030\",\n                \"pjs_id\": 118041,\n                \"pjs_name\": \"M42,\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170658,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1625,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC14ZT\",\n                        \"pjhl_stockno\": \"EX15TZ70\",\n                        \"pjhl_description\": \"14 TONNE CASE CX145D SR EXCAVATOR ZERO TAIL C/W BLADE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1084,\n                \"pjh_contractnumber\": \"WSD44444\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13198,\n                \"pjc_name\": \"STORY PLANT LIMITED S258\",\n                \"pjs_id\": 118128,\n                \"pjs_name\": \"LEEMAN ROAD\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170659,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1626,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"LSHOV\",\n                        \"pjhl_stockno\": \"LS08\",\n                        \"pjhl_description\": \"L90H 17T VOLVO LOADING SHOVEL\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1627,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"FORKEX\",\n                        \"pjhl_stockno\": \"LSF01\",\n                        \"pjhl_description\": \"FORKS LOADING SHOVEL L90H CAT950\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1085,\n                \"pjh_contractnumber\": \"WSD44445\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11053,\n                \"pjc_name\": \"BALFOUR BEATTY CONSTRUCTION B056\",\n                \"pjs_id\": 117963,\n                \"pjs_name\": \"A63 CASTE STREET\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170660,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1628,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR8\",\n                        \"pjhl_stockno\": \"BR936\",\n                        \"pjhl_description\": \"SB302 ATLAS COPCO BREAKER 8T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1086,\n                \"pjh_contractnumber\": \"WSD44446\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12130,\n                \"pjc_name\": \"KIER TRANSPORTATION LIMITED K068\",\n                \"pjs_id\": 118070,\n                \"pjs_name\": \"COLNE RESEVIOR\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170661,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1629,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DTRACK03\",\n                        \"pjhl_stockno\": \"X-NTD307\",\n                        \"pjhl_description\": \"3T TRACKED DUMPER RIDGED MOROOKA MST300VD\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1087,\n                \"pjh_contractnumber\": \"SDW86744\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10539,\n                \"pjc_name\": \"BARHALE LIMITED 438\",\n                \"pjs_id\": 117990,\n                \"pjs_name\": \"SWINDON- SN25\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170667,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1630,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC1.5\",\n                        \"pjhl_stockno\": \"EX2T62\",\n                        \"pjhl_description\": \"1.5 TONNE CAT 301.5 EXCAVATOR C/w Quick Hitch\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1631,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR1.5\",\n                        \"pjhl_stockno\": \"BR717\",\n                        \"pjhl_description\": \"SB102 ATLAS COPCO 1.5 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1088,\n                \"pjh_contractnumber\": \"SDW86734\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13071,\n                \"pjc_name\": \"A HAK PIPELINES & A194\",\n                \"pjs_id\": 117943,\n                \"pjs_name\": \"HONINGHAM- NR9\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170670,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1632,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUVD9\",\n                        \"pjhl_stockno\": \"DVD9T02\",\n                        \"pjhl_description\": \"DV90 DUAL VIEW DUMPER WACKER NEUSON\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1089,\n                \"pjh_contractnumber\": \"SDW86745\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11179,\n                \"pjc_name\": \"HB TUNNELLING LIMITED H006\",\n                \"pjs_id\": 117674,\n                \"pjs_name\": \"WOKING- GU23\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170671,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1633,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T304\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR CAT308-07\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1090,\n                \"pjh_contractnumber\": \"WSD44454\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13347,\n                \"pjc_name\": \"COLAS LIMITED -COL GBR0005 C316\",\n                \"pjs_id\": 117995,\n                \"pjs_name\": \"BRIDGWATER ROAD\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170679,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1634,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC1.5\",\n                        \"pjhl_stockno\": \"EX2T53\",\n                        \"pjhl_description\": \"1.5 TONNE CAT 301.5 EXCAVATOR c/w QUICK HITCH\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1635,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"BR1.5\",\n                        \"pjhl_stockno\": \"BR506\",\n                        \"pjhl_description\": \"SB102 ATLAS COPCO 1.5 TONNE\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1636,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"TRAILERS\",\n                        \"pjhl_stockno\": \"TR51\",\n                        \"pjhl_description\": \"INDESPENSION DIGADOC 2700kgs TRAILER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1091,\n                \"pjh_contractnumber\": \"PH84620\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 11136,\n                \"pjc_name\": \"MORRISON WATER SERVICES M027\",\n                \"pjs_id\": 118097,\n                \"pjs_name\": \"WOODMANS GLADE\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170680,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"on\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1637,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC9ZTB\",\n                        \"pjhl_stockno\": \"EX9T108\",\n                        \"pjhl_description\": \"9T LOW EMMISSION EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"M\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"HOUR\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1092,\n                \"pjh_contractnumber\": \"SDW86748\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10539,\n                \"pjc_name\": \"BARHALE LIMITED 438\",\n                \"pjs_id\": 117592,\n                \"pjs_name\": \"BARHALE COMPOUND- NW1\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170690,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1638,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC40\",\n                        \"pjhl_stockno\": \"EX40T110\",\n                        \"pjhl_description\": \"40 TONNE CATERPILLAR 336-07 TRIMBLE EW 3D READY EXCAVATOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1093,\n                \"pjh_contractnumber\": \"WSD44458\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12009,\n                \"pjc_name\": \"MURPHY PLANT LIMITED M223\",\n                \"pjs_id\": 118101,\n                \"pjs_name\": \"ADVANCE PLUS,,\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170696,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1639,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"ROLLER\",\n                        \"pjhl_stockno\": \"RO3T11\",\n                        \"pjhl_description\": \"CC1200 ROLLER ATLAS COPCO\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1094,\n                \"pjh_contractnumber\": \"WSD44459\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 10865,\n                \"pjc_name\": \"MORGAN SINDALL CONSTRUCTION M169\",\n                \"pjs_id\": 118089,\n                \"pjs_name\": \"AMP 7 FRAMEWORK DCWW,,\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170698,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1640,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"PILEHAMM\",\n                        \"pjhl_stockno\": \"XPILEHAMM\",\n                        \"pjhl_description\": \"PILING HAMMER\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1095,\n                \"pjh_contractnumber\": \"SDW86750\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117959,\n                \"pjs_name\": \"HAVERHILL ROAD\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170699,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1641,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"EXC3ZT\",\n                        \"pjhl_stockno\": \"EX3T130\",\n                        \"pjhl_description\": \"3 TONNE CAT 302.7D Excavator\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1642,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"SAFETY\",\n                        \"pjhl_stockno\": \"DTHUMB\",\n                        \"pjhl_description\": \"DIGITAL THUMB\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1643,\n                        \"pjhl_seq\": 3,\n                        \"pjhl_categorycode\": \"SLEW\",\n                        \"pjhl_stockno\": \"SLEW\",\n                        \"pjhl_description\": \"SLEW RESTRICTOR\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1096,\n                \"pjh_contractnumber\": \"SDW86749\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 13270,\n                \"pjc_name\": \"BALFOUR BEATTY - ANGLIAN WATER B259\",\n                \"pjs_id\": 117959,\n                \"pjs_name\": \"HAVERHILL ROAD\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170700,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1644,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"BR3\",\n                        \"pjhl_stockno\": \"BR867\",\n                        \"pjhl_description\": \"SB152 EPIROC BREAKER 3T\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            },\n            {\n                \"pjh_id\": 1097,\n                \"pjh_contractnumber\": \"SDW86751\",\n                \"pjh_status\": \"O\",\n                \"pjc_id\": 12361,\n                \"pjc_name\": \"FIVE RIVERS ENVIROMENTAL F071\",\n                \"pjs_id\": 118017,\n                \"pjs_name\": \"SALISBURY- SP1\",\n                \"pjh_deliverydate\": \"2023-10-04\",\n                \"syrinx_id\": 170701,\n                \"syrinx_raised\": null,\n                \"syrinx_modified\": null,\n                \"pjh_isoperated\": \"off\",\n                \"pjh_created\": \"2023-10-05\",\n                \"pjh_updated\": \"2023-10-05\",\n                \"custom_fields\": {\n                    \"OtherDetails_2802_Comments\": \"\",\n                    \"custom_field_2802\": \"\"\n                },\n                \"lines\": [\n                    {\n                        \"pjhl_id\": 1645,\n                        \"pjhl_seq\": 1,\n                        \"pjhl_categorycode\": \"DUM6S\",\n                        \"pjhl_stockno\": \"4617\",\n                        \"pjhl_description\": \"6 TONNE POWERSWIVEL DUMPER THWAITES\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    },\n                    {\n                        \"pjhl_id\": 1646,\n                        \"pjhl_seq\": 2,\n                        \"pjhl_categorycode\": \"EXTR\",\n                        \"pjhl_stockno\": \"TAX\",\n                        \"pjhl_description\": \"ROAD LEGAL / TAX\",\n                        \"pjhl_operatedtype\": \"\",\n                        \"pjhl_ishire\": \"on\",\n                        \"pjhl_issale\": null,\n                        \"pjhl_quantity\": null,\n                        \"pjhl_hireunitprice\": null,\n                        \"pjhl_saleunitprice\": null,\n                        \"pjhl_hirediscountpercent\": null,\n                        \"pjhl_salediscountpercent\": null,\n                        \"pjhl_displayunits\": null,\n                        \"pjhl_chargeperiod\": \"5WEEK\",\n                        \"pjhl_chargeamount\": null,\n                        \"pjhl_created\": \"2023-10-05 16:43:36\",\n                        \"pjhl_updated\": \"2024-03-28 12:20:38\"\n                    }\n                ],\n                \"operators\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"1a39816f-0684-4fa7-8e6b-c2022a19956f"}],"id":"cf821b02-ffd7-48ea-ac5e-591f2acf297c","_postman_id":"cf821b02-ffd7-48ea-ac5e-591f2acf297c","description":""},{"name":"Leads","item":[{"name":"fetchLeads","event":[{"listen":"prerequest","script":{"id":"efe84883-1b95-4548-b9b7-0d7fc20c3f5c","exec":["pm.variables.set(\"method\",\"fetchLeads\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"fe90fbb1-5f9e-4c9b-8178-fe168e6ebef2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 500,\r\n     \"pjc_id\"      : null,\r\n     \"pjs_id\"      : 118457,\r\n     \"mkc_id\"      : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"ca0a9c72-bbb9-480e-97e5-75a980b31d73","name":"fetchLeads","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 500,\r\n     \"pjc_id\"      : null,\r\n     \"pjs_id\"      : 118457,\r\n     \"mkc_id\"      : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Nov 2024 10:01:08 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1897"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchLeads\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pjs_id\": 118457,\n                \"pjs_name_aslead\": \"Harefield Church\",\n                \"pjc_id\": 13528,\n                \"pjc_name\": \"Acca Plant\",\n                \"pjs_address1\": \"Church Hill\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"Harefield\",\n                \"pjs_county\": \"Middlesex\",\n                \"pjs_pcode\": \"UB9 6DU\",\n                \"pjs_lat\": \"51.59742950\",\n                \"pjs_lng\": \"-0.48311500\",\n                \"pjs_sytt_id_probability\": 809,\n                \"pjs_sytt_desc_probability\": \"Open - Proposal Bid Submitted\",\n                \"pjs_phone\": \"\",\n                \"pjs_syu_id_bdm\": 0,\n                \"pjs_syu_fullname_bdm\": null,\n                \"pjs_sytt_id_prospectstatus\": 741,\n                \"pjs_sytt_desc_prospectstatus\": \"Open - Proposal Bid Submitted\",\n                \"pjs_value_aslead\": \"0\",\n                \"pjs_startdate_aslead\": \"0000-00-00\",\n                \"pjs_enddate_aslead\": \"0000-00-00\",\n                \"link\": \"mk_lead.php?mode=EDIT&pjs_id=118457\",\n                \"custom_fields\": {\n                    \"SomeOtherDetails_2799_Ok?\": \"\",\n                    \"SomeOtherDetails_2800_SomeDate\": \"\"\n                },\n                \"contacts\": [\n                    {\n                        \"mkc_id\": 2339,\n                        \"mkc_firstname\": \"Brian\",\n                        \"mkc_surname\": \"Cole\",\n                        \"mkc_sytt_id_title\": 0,\n                        \"mkc_title\": null,\n                        \"mkc_phone\": \"\",\n                        \"mkc_mobile\": \"07777111222\",\n                        \"mkc_email\": \"brian@bbc.co.uk\",\n                        \"mkc_linkedin\": \"\",\n                        \"pjb_id\": 0,\n                        \"pjb_name\": null,\n                        \"mkc_rating\": 1,\n                        \"mkc_warmth\": 1,\n                        \"mkc_sytt_id_vreason\": 0,\n                        \"mkc_vreason\": null,\n                        \"mkc_datelastvisit\": \"0000-00-00 \",\n                        \"mkc_notelastvisit\": \"\",\n                        \"mkc_sytt_id_entertainment\": 0,\n                        \"mkc_entertainment\": null,\n                        \"mkc_datelastentertainment\": \"0000-00-00 \",\n                        \"mkc_notelastentertainment\": \"\",\n                        \"mkc_created\": \"2024-09-29\",\n                        \"mkc_updated\": \"2024-09-29\",\n                        \"link\": \"mk_contact.php?mode=EDIT&mkc_id=2339\"\n                    }\n                ],\n                \"notes\": [],\n                \"history\": [\n                    {\n                        \"sya_date\": \"2024-09-29 10:21:00\",\n                        \"sytt_desc\": \"Open - Unqualified\",\n                        \"value_aslead\": 0,\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-09-29 10:21:49\",\n                        \"sytt_desc\": \"Open - Proposal Bid Submitted\",\n                        \"value_aslead\": 0,\n                        \"syu_fullname\": \"Steve Curd\"\n                    }\n                ],\n                \"subcontractors\": [\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 13528,\n                        \"pjc_name\": \"Acca Plant\",\n                        \"pjss_startdate\": \"2024-11-01\",\n                        \"pjss_value\": \"250000\",\n                        \"pjc_num_quotations_sent\": 2,\n                        \"pjc_num_quotations_won\": 1,\n                        \"pjc_num_quotations_lost\": 0\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"fe90fbb1-5f9e-4c9b-8178-fe168e6ebef2"},{"name":"fetchUpdatedLeads","event":[{"listen":"prerequest","script":{"id":"435bb421-098e-4e48-a79f-d7b400f22ef1","exec":["pm.variables.set(\"method\",\"fetchUpdatedLeads\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"dd5afd05-be14-4e5d-ac31-a63d2e8b7b6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",\r\n     \"updatesSince\" : \"2023-01-01\"\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"bf09adef-06be-40a9-903b-ec7043f25523","name":"fetchUpdatedLeads","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",\r\n     \"updatesSince\" : \"2023-01-01\"\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Nov 2024 10:02:20 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUpdatedLeads\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 1513,\n                \"pjs_name_aslead\": \"1513 - Residential,Reldare, Model Farm Rd, Carrigrohane\",\n                \"pjc_id\": 905,\n                \"pjc_name\": \"3 G SETS Limited\",\n                \"pjs_address1\": \"\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"Cork\",\n                \"pjs_county\": \"Mun\",\n                \"pjs_pcode\": \"DUBLIN 1\",\n                \"pjs_lat\": \"53.34788790\",\n                \"pjs_lng\": \"-6.26269480\",\n                \"pjs_sytt_id_probability\": 809,\n                \"pjs_sytt_desc_probability\": \"Closed - Won\",\n                \"pjs_phone\": \"\",\n                \"pjs_syu_id_bdm\": 3,\n                \"pjs_syu_fullname_bdm\": \"John Smith\",\n                \"pjs_sytt_id_prospectstatus\": 742,\n                \"pjs_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjs_value_aslead\": \"75000\",\n                \"pjs_startdate_aslead\": \"2020-03-01\",\n                \"pjs_enddate_aslead\": \"0000-00-00\",\n                \"link\": \"mk_lead.php?mode=EDIT&pjs_id=1513\",\n                \"custom_fields\": {\n                    \"SomeOtherDetails_2799_Ok?\": \"on\",\n                    \"SomeOtherDetails_2800_SomeDate\": \"2024-08-06\"\n                },\n                \"contacts\": [\n                    {\n                        \"mkc_id\": 1756,\n                        \"mkc_firstname\": \"Lee\",\n                        \"mkc_surname\": \"Hall\",\n                        \"mkc_sytt_id_title\": 0,\n                        \"mkc_title\": null,\n                        \"mkc_phone\": \"\",\n                        \"mkc_mobile\": \"\",\n                        \"mkc_email\": \"\",\n                        \"mkc_linkedin\": \"\",\n                        \"pjb_id\": 0,\n                        \"pjb_name\": null,\n                        \"mkc_rating\": 1,\n                        \"mkc_warmth\": 1,\n                        \"mkc_sytt_id_vreason\": 612,\n                        \"mkc_vreason\": \"Site Visit\",\n                        \"mkc_datelastvisit\": \"2021-08-25 12:00\",\n                        \"mkc_notelastvisit\": \"test\",\n                        \"mkc_sytt_id_entertainment\": 0,\n                        \"mkc_entertainment\": null,\n                        \"mkc_datelastentertainment\": \"0000-00-00 \",\n                        \"mkc_notelastentertainment\": \"\",\n                        \"mkc_created\": \"2021-01-31\",\n                        \"mkc_updated\": \"2024-09-03\",\n                        \"link\": \"mk_contact.php?mode=EDIT&mkc_id=1756\"\n                    },\n                    {\n                        \"mkc_id\": 1756,\n                        \"mkc_firstname\": \"Lee\",\n                        \"mkc_surname\": \"Hall\",\n                        \"mkc_sytt_id_title\": 0,\n                        \"mkc_title\": null,\n                        \"mkc_phone\": \"\",\n                        \"mkc_mobile\": \"\",\n                        \"mkc_email\": \"\",\n                        \"mkc_linkedin\": \"\",\n                        \"pjb_id\": 0,\n                        \"pjb_name\": null,\n                        \"mkc_rating\": 1,\n                        \"mkc_warmth\": 1,\n                        \"mkc_sytt_id_vreason\": 612,\n                        \"mkc_vreason\": \"Site Visit\",\n                        \"mkc_datelastvisit\": \"2021-08-25 12:00\",\n                        \"mkc_notelastvisit\": \"test\",\n                        \"mkc_sytt_id_entertainment\": 0,\n                        \"mkc_entertainment\": null,\n                        \"mkc_datelastentertainment\": \"0000-00-00 \",\n                        \"mkc_notelastentertainment\": \"\",\n                        \"mkc_created\": \"2021-01-31\",\n                        \"mkc_updated\": \"2024-09-03\",\n                        \"link\": \"mk_contact.php?mode=EDIT&mkc_id=1756\"\n                    },\n                    {\n                        \"mkc_id\": 2196,\n                        \"mkc_firstname\": \"New\",\n                        \"mkc_surname\": \"Lead Contact CCC\",\n                        \"mkc_sytt_id_title\": 0,\n                        \"mkc_title\": null,\n                        \"mkc_phone\": \"\",\n                        \"mkc_mobile\": \"\",\n                        \"mkc_email\": \"\",\n                        \"mkc_linkedin\": \"\",\n                        \"pjb_id\": 0,\n                        \"pjb_name\": null,\n                        \"mkc_rating\": 1,\n                        \"mkc_warmth\": 1,\n                        \"mkc_sytt_id_vreason\": 0,\n                        \"mkc_vreason\": null,\n                        \"mkc_datelastvisit\": \"0000-00-00 \",\n                        \"mkc_notelastvisit\": \"\",\n                        \"mkc_sytt_id_entertainment\": 0,\n                        \"mkc_entertainment\": null,\n                        \"mkc_datelastentertainment\": \"0000-00-00 \",\n                        \"mkc_notelastentertainment\": \"\",\n                        \"mkc_created\": \"2024-02-12\",\n                        \"mkc_updated\": \"2024-09-03\",\n                        \"link\": \"mk_contact.php?mode=EDIT&mkc_id=2196\"\n                    },\n                    {\n                        \"mkc_id\": 2196,\n                        \"mkc_firstname\": \"New\",\n                        \"mkc_surname\": \"Lead Contact CCC\",\n                        \"mkc_sytt_id_title\": 0,\n                        \"mkc_title\": null,\n                        \"mkc_phone\": \"\",\n                        \"mkc_mobile\": \"\",\n                        \"mkc_email\": \"\",\n                        \"mkc_linkedin\": \"\",\n                        \"pjb_id\": 0,\n                        \"pjb_name\": null,\n                        \"mkc_rating\": 1,\n                        \"mkc_warmth\": 1,\n                        \"mkc_sytt_id_vreason\": 0,\n                        \"mkc_vreason\": null,\n                        \"mkc_datelastvisit\": \"0000-00-00 \",\n                        \"mkc_notelastvisit\": \"\",\n                        \"mkc_sytt_id_entertainment\": 0,\n                        \"mkc_entertainment\": null,\n                        \"mkc_datelastentertainment\": \"0000-00-00 \",\n                        \"mkc_notelastentertainment\": \"\",\n                        \"mkc_created\": \"2024-02-12\",\n                        \"mkc_updated\": \"2024-09-03\",\n                        \"link\": \"mk_contact.php?mode=EDIT&mkc_id=2196\"\n                    },\n                    {\n                        \"mkc_id\": 2330,\n                        \"mkc_firstname\": \"John\",\n                        \"mkc_surname\": \"Doe\",\n                        \"mkc_sytt_id_title\": 0,\n                        \"mkc_title\": null,\n                        \"mkc_phone\": \"\",\n                        \"mkc_mobile\": \"07777333444\",\n                        \"mkc_email\": \"\",\n                        \"mkc_linkedin\": \"\",\n                        \"pjb_id\": 0,\n                        \"pjb_name\": null,\n                        \"mkc_rating\": 1,\n                        \"mkc_warmth\": 1,\n                        \"mkc_sytt_id_vreason\": 0,\n                        \"mkc_vreason\": null,\n                        \"mkc_datelastvisit\": \"0000-00-00 \",\n                        \"mkc_notelastvisit\": \"\",\n                        \"mkc_sytt_id_entertainment\": 0,\n                        \"mkc_entertainment\": null,\n                        \"mkc_datelastentertainment\": \"0000-00-00 \",\n                        \"mkc_notelastentertainment\": \"\",\n                        \"mkc_created\": \"2024-09-06\",\n                        \"mkc_updated\": \"2024-09-06\",\n                        \"link\": \"mk_contact.php?mode=EDIT&mkc_id=2330\"\n                    }\n                ],\n                \"notes\": [\n                    {\n                        \"mkn_id\": 454,\n                        \"mkn_text\": \"cghj cghjdty gfjyfyju\",\n                        \"mkn_sytt_id_notetype\": 771,\n                        \"mkn_notetype\": \"Personal\",\n                        \"mkn_created\": \"2024-02-06\",\n                        \"mkn_updated\": \"2024-10-16\",\n                        \"syu_id\": 1,\n                        \"suy_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"mkn_id\": 659,\n                        \"mkn_text\": \"erwreweerr\",\n                        \"mkn_sytt_id_notetype\": 771,\n                        \"mkn_notetype\": \"Personal\",\n                        \"mkn_created\": \"2024-10-16\",\n                        \"mkn_updated\": \"2024-10-16\",\n                        \"syu_id\": 1,\n                        \"suy_fullname\": \"Steve Curd\"\n                    }\n                ],\n                \"history\": [],\n                \"subcontractors\": [\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 11326,\n                        \"pjc_name\": \"20TH WILLESDEN SCOUT GROUP CA032\",\n                        \"pjss_startdate\": \"2024-08-01\",\n                        \"pjss_value\": \"600000\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 11438,\n                        \"pjc_name\": \"4-D CONSTRUCTION (UK) LTD CA001\",\n                        \"pjss_startdate\": \"2024-08-08\",\n                        \"pjss_value\": \"200000\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 13453,\n                        \"pjc_name\": \"1STINRAIL LIMITED S273\",\n                        \"pjss_startdate\": \"0000-00-00\",\n                        \"pjss_value\": \"0\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87832,\n                        \"sytt_desc\": \"Demolition\",\n                        \"pjc_id\": 12371,\n                        \"pjc_name\": \"J2R DEMOLITION LIMITED J091\",\n                        \"pjss_startdate\": \"2024-10-31\",\n                        \"pjss_value\": \"250000\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 1524,\n                \"pjs_name_aslead\": \"2 Gresham Street - Alterations & Refurbishment\",\n                \"pjc_id\": 698,\n                \"pjc_name\": \"Willmott Dixon Interiors LTD\",\n                \"pjs_address1\": \"2 Gresham Street\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"City\",\n                \"pjs_county\": \"London\",\n                \"pjs_pcode\": \"EC2V 7QP\",\n                \"pjs_lat\": \"51.51620030\",\n                \"pjs_lng\": \"-0.09623170\",\n                \"pjs_sytt_id_probability\": 810,\n                \"pjs_sytt_desc_probability\": \"Closed - Won\",\n                \"pjs_phone\": \"\",\n                \"pjs_syu_id_bdm\": 0,\n                \"pjs_syu_fullname_bdm\": null,\n                \"pjs_sytt_id_prospectstatus\": 742,\n                \"pjs_sytt_desc_prospectstatus\": \"Closed - Won\",\n                \"pjs_value_aslead\": \"3500\",\n                \"pjs_startdate_aslead\": \"0000-00-00\",\n                \"pjs_enddate_aslead\": \"0000-00-00\",\n                \"link\": \"mk_lead.php?mode=EDIT&pjs_id=1524\",\n                \"custom_fields\": {\n                    \"SomeOtherDetails_2799_Ok?\": \"off\",\n                    \"SomeOtherDetails_2800_SomeDate\": \"2024-08-06\"\n                },\n                \"contacts\": [],\n                \"notes\": [],\n                \"history\": [\n                    {\n                        \"sya_date\": \"2024-01-03 11:59:09\",\n                        \"sytt_desc\": \"Open - Contacted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-10 11:22:58\",\n                        \"sytt_desc\": \"Open - Unqualified\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-10 11:23:19\",\n                        \"sytt_desc\": \"Open - Contacted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-11 11:30:58\",\n                        \"sytt_desc\": \"Open - Proposal Bid Submitted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-24 15:57:13\",\n                        \"sytt_desc\": \"Open - Contacted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-24 15:57:27\",\n                        \"sytt_desc\": \"Open - Proposal Bid Submitted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-24 15:57:30\",\n                        \"sytt_desc\": \"Open - Contacted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-24 15:57:35\",\n                        \"sytt_desc\": \"Open - Proposal Bid Submitted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-24 16:48:38\",\n                        \"sytt_desc\": \"Open - Contacted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-24 17:41:00\",\n                        \"sytt_desc\": \"Open - Proposal Bid Submitted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-24 17:41:04\",\n                        \"sytt_desc\": \"Open - Contacted\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-24 17:48:08\",\n                        \"sytt_desc\": \"Closed - Won\",\n                        \"value_aslead\": \"3500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    }\n                ],\n                \"subcontractors\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 1543,\n                \"pjs_name_aslead\": \"1543 - kkkkkkkkkkk\",\n                \"pjc_id\": 389,\n                \"pjc_name\": \"Balfour Beatty Regional Construction (Airport) Limited\",\n                \"pjs_address1\": \"\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"\",\n                \"pjs_county\": \"\",\n                \"pjs_pcode\": \"W13\",\n                \"pjs_lat\": \"51.51719870\",\n                \"pjs_lng\": \"-0.32073390\",\n                \"pjs_sytt_id_probability\": 810,\n                \"pjs_sytt_desc_probability\": \"Open - Proposal Bid Submitted\",\n                \"pjs_phone\": \"\",\n                \"pjs_syu_id_bdm\": 0,\n                \"pjs_syu_fullname_bdm\": null,\n                \"pjs_sytt_id_prospectstatus\": 741,\n                \"pjs_sytt_desc_prospectstatus\": \"Open - Proposal Bid Submitted\",\n                \"pjs_value_aslead\": \"5500\",\n                \"pjs_startdate_aslead\": \"0000-00-00\",\n                \"pjs_enddate_aslead\": \"0000-00-00\",\n                \"link\": \"mk_lead.php?mode=EDIT&pjs_id=1543\",\n                \"custom_fields\": {\n                    \"SomeOtherDetails_2799_Ok?\": \"on\",\n                    \"SomeOtherDetails_2800_SomeDate\": \"\"\n                },\n                \"contacts\": [],\n                \"notes\": [],\n                \"history\": [\n                    {\n                        \"sya_date\": \"2024-01-10 13:22:05\",\n                        \"sytt_desc\": \"Open - Contacted\",\n                        \"value_aslead\": \"5500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-01-24 16:26:23\",\n                        \"sytt_desc\": \"Open - Proposal Bid Submitted\",\n                        \"value_aslead\": \"5500\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    }\n                ],\n                \"subcontractors\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 118422,\n                \"pjs_name_aslead\": \"Cahirciveen Community Hospital (as Lead)\",\n                \"pjc_id\": 12002,\n                \"pjc_name\": \"1ST CALL PLANT LIMITED 009\",\n                \"pjs_address1\": \"12 High St\",\n                \"pjs_address2\": \"Lower Cork\",\n                \"pjs_town\": \"Cork\",\n                \"pjs_county\": \"Munster\",\n                \"pjs_pcode\": \"UB9 6NE\",\n                \"pjs_lat\": \"51.60294470\",\n                \"pjs_lng\": \"-0.47779070\",\n                \"pjs_sytt_id_probability\": 809,\n                \"pjs_sytt_desc_probability\": \"Open - Unqualified\",\n                \"pjs_phone\": \"01888 123456\",\n                \"pjs_syu_id_bdm\": 3,\n                \"pjs_syu_fullname_bdm\": \"John Smith\",\n                \"pjs_sytt_id_prospectstatus\": 786,\n                \"pjs_sytt_desc_prospectstatus\": \"Open - Unqualified\",\n                \"pjs_value_aslead\": \"126000\",\n                \"pjs_startdate_aslead\": \"2024-01-01\",\n                \"pjs_enddate_aslead\": \"2024-12-31\",\n                \"link\": \"mk_lead.php?mode=EDIT&pjs_id=118422\",\n                \"custom_fields\": {\n                    \"SomeOtherDetails_2799_Ok?\": \"off\",\n                    \"SomeOtherDetails_2800_SomeDate\": \"2024-09-04\"\n                },\n                \"contacts\": [\n                    {\n                        \"mkc_id\": 2281,\n                        \"mkc_firstname\": \"Larry\",\n                        \"mkc_surname\": \"Ellison\",\n                        \"mkc_sytt_id_title\": null,\n                        \"mkc_title\": null,\n                        \"mkc_phone\": \"\",\n                        \"mkc_mobile\": \"\",\n                        \"mkc_email\": \"\",\n                        \"mkc_linkedin\": \"\",\n                        \"pjb_id\": 0,\n                        \"pjb_name\": null,\n                        \"mkc_rating\": 1,\n                        \"mkc_warmth\": 1,\n                        \"mkc_sytt_id_vreason\": 0,\n                        \"mkc_vreason\": null,\n                        \"mkc_datelastvisit\": \"0000-00-00 \",\n                        \"mkc_notelastvisit\": \"\",\n                        \"mkc_sytt_id_entertainment\": 0,\n                        \"mkc_entertainment\": null,\n                        \"mkc_datelastentertainment\": \"0000-00-00 \",\n                        \"mkc_notelastentertainment\": \"\",\n                        \"mkc_created\": \"2024-06-24\",\n                        \"mkc_updated\": \"2024-09-03\",\n                        \"link\": \"mk_contact.php?mode=EDIT&mkc_id=2281\"\n                    },\n                    {\n                        \"mkc_id\": 2313,\n                        \"mkc_firstname\": \"Alan\",\n                        \"mkc_surname\": \"Logan\",\n                        \"mkc_sytt_id_title\": null,\n                        \"mkc_title\": null,\n                        \"mkc_phone\": \"\",\n                        \"mkc_mobile\": \"\",\n                        \"mkc_email\": \"\",\n                        \"mkc_linkedin\": \"\",\n                        \"pjb_id\": 0,\n                        \"pjb_name\": null,\n                        \"mkc_rating\": 1,\n                        \"mkc_warmth\": 1,\n                        \"mkc_sytt_id_vreason\": 0,\n                        \"mkc_vreason\": null,\n                        \"mkc_datelastvisit\": \"0000-00-00 \",\n                        \"mkc_notelastvisit\": \"\",\n                        \"mkc_sytt_id_entertainment\": 0,\n                        \"mkc_entertainment\": null,\n                        \"mkc_datelastentertainment\": \"0000-00-00 \",\n                        \"mkc_notelastentertainment\": \"\",\n                        \"mkc_created\": \"2024-09-03\",\n                        \"mkc_updated\": \"2024-10-07\",\n                        \"link\": \"mk_contact.php?mode=EDIT&mkc_id=2313\"\n                    },\n                    {\n                        \"mkc_id\": 2332,\n                        \"mkc_firstname\": \"Gerry\",\n                        \"mkc_surname\": \"Rafferty\",\n                        \"mkc_sytt_id_title\": 0,\n                        \"mkc_title\": null,\n                        \"mkc_phone\": \"\",\n                        \"mkc_mobile\": \"07777222333\",\n                        \"mkc_email\": \"\",\n                        \"mkc_linkedin\": \"\",\n                        \"pjb_id\": 0,\n                        \"pjb_name\": null,\n                        \"mkc_rating\": 1,\n                        \"mkc_warmth\": 1,\n                        \"mkc_sytt_id_vreason\": 0,\n                        \"mkc_vreason\": null,\n                        \"mkc_datelastvisit\": \"0000-00-00 \",\n                        \"mkc_notelastvisit\": \"\",\n                        \"mkc_sytt_id_entertainment\": 0,\n                        \"mkc_entertainment\": null,\n                        \"mkc_datelastentertainment\": \"0000-00-00 \",\n                        \"mkc_notelastentertainment\": \"\",\n                        \"mkc_created\": \"2024-09-06\",\n                        \"mkc_updated\": \"2024-09-06\",\n                        \"link\": \"mk_contact.php?mode=EDIT&mkc_id=2332\"\n                    }\n                ],\n                \"notes\": [\n                    {\n                        \"mkn_id\": 471,\n                        \"mkn_text\": \"This is the text of Note 1\",\n                        \"mkn_sytt_id_notetype\": 301,\n                        \"mkn_notetype\": \"General\",\n                        \"mkn_created\": \"2024-03-11\",\n                        \"mkn_updated\": \"2024-03-11\",\n                        \"syu_id\": 1,\n                        \"suy_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"mkn_id\": 549,\n                        \"mkn_text\": \"Note 2\",\n                        \"mkn_sytt_id_notetype\": 71922,\n                        \"mkn_notetype\": \"Official Communication\",\n                        \"mkn_created\": \"2024-07-02\",\n                        \"mkn_updated\": \"2024-09-04\",\n                        \"syu_id\": 1,\n                        \"suy_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"mkn_id\": 650,\n                        \"mkn_text\": \"cccccccc dddddddd eee\",\n                        \"mkn_sytt_id_notetype\": 770,\n                        \"mkn_notetype\": \"General\",\n                        \"mkn_created\": \"2024-10-08\",\n                        \"mkn_updated\": \"2024-10-08\",\n                        \"syu_id\": 1,\n                        \"suy_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"mkn_id\": 655,\n                        \"mkn_text\": \"A lead note\",\n                        \"mkn_sytt_id_notetype\": 771,\n                        \"mkn_notetype\": \"Personal\",\n                        \"mkn_created\": \"2024-10-15\",\n                        \"mkn_updated\": \"2024-10-15\",\n                        \"syu_id\": 1,\n                        \"suy_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"mkn_id\": 688,\n                        \"mkn_text\": \"I must talk to this lead\",\n                        \"mkn_sytt_id_notetype\": 71922,\n                        \"mkn_notetype\": \"Official Communication\",\n                        \"mkn_created\": \"2024-10-17\",\n                        \"mkn_updated\": \"2024-10-25\",\n                        \"syu_id\": 1,\n                        \"suy_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"mkn_id\": 702,\n                        \"mkn_text\": \"New Lead Note\",\n                        \"mkn_sytt_id_notetype\": 770,\n                        \"mkn_notetype\": \"General\",\n                        \"mkn_created\": \"2024-11-14\",\n                        \"mkn_updated\": \"2024-11-14\",\n                        \"syu_id\": 1,\n                        \"suy_fullname\": \"Steve Curd\"\n                    }\n                ],\n                \"history\": [\n                    {\n                        \"sya_date\": \"2024-03-11 17:33:56\",\n                        \"sytt_desc\": \"Open - Unqualified\",\n                        \"value_aslead\": \"125000\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    },\n                    {\n                        \"sya_date\": \"2024-06-24 18:05:04\",\n                        \"sytt_desc\": \"Open - Unqualified\",\n                        \"value_aslead\": \"126000\",\n                        \"syu_fullname\": \"Steve Curd\"\n                    }\n                ],\n                \"subcontractors\": [\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 13244,\n                        \"pjc_name\": \"C & I SMITH BUILDING C306\",\n                        \"pjss_startdate\": \"0000-00-00\",\n                        \"pjss_value\": \"0\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 13617,\n                        \"pjc_name\": \"Sgfdgrttert\",\n                        \"pjss_startdate\": \"0000-00-00\",\n                        \"pjss_value\": \"0\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 13504,\n                        \"pjc_name\": \"GROUNDSOURCE UK LIMITED G187\",\n                        \"pjss_startdate\": \"0000-00-00\",\n                        \"pjss_value\": \"0\",\n                        \"pjc_num_quotations_sent\": 1,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 1\n                    },\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 12709,\n                        \"pjc_name\": \"BARKANA CONSTRUCTION LTD ZZ052\",\n                        \"pjss_startdate\": \"2024-11-12\",\n                        \"pjss_value\": \"15000\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 12124,\n                        \"pjc_name\": \"ADAMS HAULAGE (KENT) LTD A087\",\n                        \"pjss_startdate\": \"2024-07-19\",\n                        \"pjss_value\": \"22222\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87822,\n                        \"sytt_desc\": \"Brickwork\",\n                        \"pjc_id\": 12002,\n                        \"pjc_name\": \"1ST CALL PLANT LIMITED 009\",\n                        \"pjss_startdate\": \"2024-09-03\",\n                        \"pjss_value\": \"150000\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87827,\n                        \"sytt_desc\": \"Masonry\",\n                        \"pjc_id\": 282,\n                        \"pjc_name\": \"Amberr Construction Services Ltd\",\n                        \"pjss_startdate\": \"2024-07-01\",\n                        \"pjss_value\": \"25001\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87827,\n                        \"sytt_desc\": \"Masonry\",\n                        \"pjc_id\": 1160,\n                        \"pjc_name\": \"2Roofers Ltd BBB\",\n                        \"pjss_startdate\": \"2024-07-02\",\n                        \"pjss_value\": \"30000\",\n                        \"pjc_num_quotations_sent\": 5,\n                        \"pjc_num_quotations_won\": 1,\n                        \"pjc_num_quotations_lost\": 0\n                    },\n                    {\n                        \"sytt_id\": 87827,\n                        \"sytt_desc\": \"Masonry\",\n                        \"pjc_id\": 11512,\n                        \"pjc_name\": \"ARGENT DEMOLITION LIMITED A016\",\n                        \"pjss_startdate\": \"2024-07-01\",\n                        \"pjss_value\": \"100000\",\n                        \"pjc_num_quotations_sent\": 0,\n                        \"pjc_num_quotations_won\": 0,\n                        \"pjc_num_quotations_lost\": 0\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"dd5afd05-be14-4e5d-ac31-a63d2e8b7b6d"}],"id":"35f88714-2d72-46bc-a0ce-e3f855481410","_postman_id":"35f88714-2d72-46bc-a0ce-e3f855481410","description":""},{"name":"Sites","item":[{"name":"fetchSites","event":[{"listen":"prerequest","script":{"id":"efe84883-1b95-4548-b9b7-0d7fc20c3f5c","exec":["pm.variables.set(\"method\",\"fetchSites\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"fe618ede-e5fb-4d50-a677-be7fa092c163","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 500,\r\n     \"pjc_id\"      : null,\r\n     \"pjs_id\"      : 117582,\r\n     \"mkc_id\"      : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"b7bfb971-0f46-44ec-a073-87bc75ea0e5f","name":"fetchSites","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 500,\r\n     \"pjc_id\"      : null,\r\n     \"pjs_id\"      : 118448,\r\n     \"mkc_id\"      : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 13:25:33 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"736"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchSites\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"pjs_id\": 118448,\n                \"pjc_id\": 305,\n                \"pjo_id\": 0,\n                \"pjs_name\": \"aaa bbb ccc\",\n                \"pjs_address1\": \"\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"\",\n                \"pjs_county\": \"\",\n                \"pjs_pcode\": \"\",\n                \"pjs_phone\": \"\",\n                \"pjs_opens\": \"07:00\",\n                \"pjs_closes\": \"07:00\",\n                \"pjs_lat\": \"0.00000000\",\n                \"pjs_lng\": \"0.00000000\",\n                \"pjs_status\": \"Chasing\",\n                \"pjs_value\": \"0\",\n                \"pjs_compdate\": \"0000-00-00\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2024-08-13 14:24:56\",\n                \"pjs_syu_id_createdby\": 1,\n                \"pjs_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjs_updated\": \"2024-08-13 14:24:56\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"\",\n                    \"CustomPane1_2797_Field2\": \"\",\n                    \"CustomPane1_2798_Field3\": \"\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"fe618ede-e5fb-4d50-a677-be7fa092c163"},{"name":"fetchUpdatedSites","event":[{"listen":"prerequest","script":{"id":"435bb421-098e-4e48-a79f-d7b400f22ef1","exec":["pm.variables.set(\"method\",\"fetchUpdatedSites\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f9e259f4-ef0d-48ba-8f65-bd68695de0e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"2023-01-01\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"31164585-edf6-4643-9d2b-d2b18bc28bb1","name":"fetchUpdatedSites","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"2023-01-01\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 13:28:50 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"5704"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUpdatedSites\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 1032,\n                \"pjc_id\": 428,\n                \"pjo_id\": 136,\n                \"pjs_name\": \"1A MOLINEUX STREET\",\n                \"pjs_address1\": \"1 MOLYNEUX STREET\",\n                \"pjs_address2\": \"MARYLEBONE\",\n                \"pjs_town\": \"London\",\n                \"pjs_county\": \"\",\n                \"pjs_pcode\": \"W1H 5HU\",\n                \"pjs_phone\": \"\",\n                \"pjs_status\": \"Active\",\n                \"pjs_value\": \"250000\",\n                \"pjs_compdate\": \"0000-00-00\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2018-09-07 09:31:47\",\n                \"pjs_syu_id_createdby\": null,\n                \"pjs_syu_fullname_createdby\": null,\n                \"pjs_updated\": \"2024-07-04 12:21:02\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"\",\n                    \"CustomPane1_2797_Field2\": \"\",\n                    \"CustomPane1_2798_Field3\": \"\"\n                }\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 117598,\n                \"pjc_id\": 12547,\n                \"pjo_id\": 0,\n                \"pjs_name\": \"09851 - RADSTONE ROAD\",\n                \"pjs_address1\": \"09851 - RADSTONE ROAD\",\n                \"pjs_address2\": \"SOUTH CUTTING\",\n                \"pjs_town\": \"WHITFIELD\",\n                \"pjs_county\": \"NORTHAMPTONSHIRE\",\n                \"pjs_pcode\": \"NN13 5GJ\",\n                \"pjs_phone\": \"\",\n                \"pjs_status\": \"Active\",\n                \"pjs_value\": \"450000\",\n                \"pjs_compdate\": \"2024-05-28\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2023-10-01 16:24:10\",\n                \"pjs_syu_id_createdby\": null,\n                \"pjs_syu_fullname_createdby\": null,\n                \"pjs_updated\": \"2024-05-30 08:55:58\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"\",\n                    \"CustomPane1_2797_Field2\": \"\",\n                    \"CustomPane1_2798_Field3\": \"\"\n                }\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 118235,\n                \"pjc_id\": 12547,\n                \"pjo_id\": 0,\n                \"pjs_name\": \"08151 WEST STREET OVERBRIDGE\",\n                \"pjs_address1\": \"08151 WEST STREET OVERBRIDGE\",\n                \"pjs_address2\": \"WEST STREET OVERBRIDGE\",\n                \"pjs_town\": \"FROM WEST ST COMPOUND\",\n                \"pjs_county\": \"\",\n                \"pjs_pcode\": \"\",\n                \"pjs_phone\": \"\",\n                \"pjs_status\": \"Active\",\n                \"pjs_value\": \"80000\",\n                \"pjs_compdate\": \"2024-05-28\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2023-10-13 16:21:48\",\n                \"pjs_syu_id_createdby\": -1,\n                \"pjs_syu_fullname_createdby\": \"System Scheduler\",\n                \"pjs_updated\": \"2024-07-04 11:58:41\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"XXXXXXXXXXX\",\n                    \"CustomPane1_2797_Field2\": \"YYYYYYYYYYY\",\n                    \"CustomPane1_2798_Field3\": \"ZZZZZZZZZZZZZ\"\n                }\n            },\n            {\n                \"action\": \"D\",\n                \"pjs_id\": 118340\n            },\n            {\n                \"action\": \"D\",\n                \"pjs_id\": 118342\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 118343,\n                \"pjc_id\": 1306,\n                \"pjo_id\": 594,\n                \"pjs_name\": \"Wapping Docks\",\n                \"pjs_address1\": \"\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"\",\n                \"pjs_county\": \"\",\n                \"pjs_pcode\": \"EC1\",\n                \"pjs_phone\": \"\",\n                \"pjs_status\": \"Active\",\n                \"pjs_value\": \"0\",\n                \"pjs_compdate\": \"0000-00-00\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2023-11-16 14:30:56\",\n                \"pjs_syu_id_createdby\": 1,\n                \"pjs_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjs_updated\": \"2024-08-04 14:36:00\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"\",\n                    \"CustomPane1_2797_Field2\": \"\",\n                    \"CustomPane1_2798_Field3\": \"\"\n                }\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 118371,\n                \"pjc_id\": 1306,\n                \"pjo_id\": 594,\n                \"pjs_name\": \"Site Test ZZZ\",\n                \"pjs_address1\": \"\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"\",\n                \"pjs_county\": \"\",\n                \"pjs_pcode\": \"RG1 1AF\",\n                \"pjs_phone\": \"\",\n                \"pjs_status\": \"Inactive\",\n                \"pjs_value\": \"0\",\n                \"pjs_compdate\": \"0000-00-00\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2024-02-12 14:24:37\",\n                \"pjs_syu_id_createdby\": 1,\n                \"pjs_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjs_updated\": \"2024-08-04 14:37:04\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"\",\n                    \"CustomPane1_2797_Field2\": \"\",\n                    \"CustomPane1_2798_Field3\": \"\"\n                }\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 118422,\n                \"pjc_id\": 12002,\n                \"pjo_id\": 0,\n                \"pjs_name\": \"\",\n                \"pjs_address1\": \"\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"Cork\",\n                \"pjs_county\": \"Munster\",\n                \"pjs_pcode\": \"UB9 6NE\",\n                \"pjs_phone\": \"\",\n                \"pjs_status\": \"Active\",\n                \"pjs_value\": \"0\",\n                \"pjs_compdate\": \"0000-00-00\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2024-03-11 17:33:56\",\n                \"pjs_syu_id_createdby\": 1,\n                \"pjs_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjs_updated\": \"2024-06-24 18:05:04\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"\",\n                    \"CustomPane1_2797_Field2\": \"\",\n                    \"CustomPane1_2798_Field3\": \"\"\n                }\n            },\n            {\n                \"action\": \"D\",\n                \"pjs_id\": 118445\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 118446,\n                \"pjc_id\": 1160,\n                \"pjo_id\": 487,\n                \"pjs_name\": \"aaaaaaaaaaaaaaaaaa\",\n                \"pjs_address1\": \"\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"\",\n                \"pjs_county\": \"\",\n                \"pjs_pcode\": \"UB10 0AA\",\n                \"pjs_phone\": \"\",\n                \"pjs_status\": \"Chasing\",\n                \"pjs_value\": \"0\",\n                \"pjs_compdate\": \"0000-00-00\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2024-07-09 13:26:00\",\n                \"pjs_syu_id_createdby\": 1,\n                \"pjs_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjs_updated\": \"2024-07-09 14:20:33\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"\",\n                    \"CustomPane1_2797_Field2\": \"\",\n                    \"CustomPane1_2798_Field3\": \"\"\n                }\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 118447,\n                \"pjc_id\": 12064,\n                \"pjo_id\": 0,\n                \"pjs_name\": \"Lyon Part Dieu Station\",\n                \"pjs_address1\": \"\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"\",\n                \"pjs_county\": \"\",\n                \"pjs_pcode\": \"\",\n                \"pjs_phone\": \"\",\n                \"pjs_status\": \"Chasing\",\n                \"pjs_value\": \"0\",\n                \"pjs_compdate\": \"0000-00-00\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2024-07-31 13:53:21\",\n                \"pjs_syu_id_createdby\": 1,\n                \"pjs_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjs_updated\": \"2024-07-31 13:53:21\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"\",\n                    \"CustomPane1_2797_Field2\": \"\",\n                    \"CustomPane1_2798_Field3\": \"\"\n                }\n            },\n            {\n                \"action\": \"U\",\n                \"pjs_id\": 118448,\n                \"pjc_id\": 305,\n                \"pjo_id\": 0,\n                \"pjs_name\": \"aaa bbb ccc\",\n                \"pjs_address1\": \"\",\n                \"pjs_address2\": \"\",\n                \"pjs_town\": \"\",\n                \"pjs_county\": \"\",\n                \"pjs_pcode\": \"\",\n                \"pjs_phone\": \"\",\n                \"pjs_status\": \"Chasing\",\n                \"pjs_value\": \"0\",\n                \"pjs_compdate\": \"0000-00-00\",\n                \"pjs_active\": \"on\",\n                \"rdb_id\": null,\n                \"pjs_created\": \"2024-08-13 14:24:56\",\n                \"pjs_syu_id_createdby\": 1,\n                \"pjs_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjs_updated\": \"2024-08-13 14:24:56\",\n                \"pjs_syu_id_revby\": 1,\n                \"pjs_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"CustomPane1_2796_Field1\": \"\",\n                    \"CustomPane1_2797_Field2\": \"\",\n                    \"CustomPane1_2798_Field3\": \"\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"f9e259f4-ef0d-48ba-8f65-bd68695de0e6"},{"name":"fetchSiteContacts","id":"bc1c52c7-fb90-427d-bc58-ada77b27aac5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123129\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"537f08258946628c95949f9a4ebc5250afb648ba80316b6880d48437260123316ce2365497c9c950458bd6043b4863683a2fc109d7e1e2f80aea059deedb1841\",\r\n     \"method\"      : \"fetchSiteContacts\",\r\n     \"pjs_id\"      : \"1541\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"a21d12c3-bfcf-47da-9be6-f509a2e9b046","name":"fetchSiteContacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123129\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"537f08258946628c95949f9a4ebc5250afb648ba80316b6880d48437260123316ce2365497c9c950458bd6043b4863683a2fc109d7e1e2f80aea059deedb1841\",\r\n     \"method\"      : \"fetchSiteContacts\",\r\n     \"pjs_id\"      : \"1541\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 16:00:49 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"505"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123129\",\n            \"method\": \"fetchSiteContacts\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"mkc_id\": 2135,\n                \"mkc_fullname\": \"aaaaaaaa zzzzzzzzzzzzz\"\n            },\n            {\n                \"mkc_id\": 1834,\n                \"mkc_fullname\": \"Doris Day\"\n            },\n            {\n                \"mkc_id\": 1835,\n                \"mkc_fullname\": \"Jack Taylor\"\n            },\n            {\n                \"mkc_id\": 2136,\n                \"mkc_fullname\": \"Joe Bloggs\"\n            },\n            {\n                \"mkc_id\": 1749,\n                \"mkc_fullname\": \"Steve Curdy\"\n            },\n            {\n                \"mkc_id\": 1749,\n                \"mkc_fullname\": \"Steve Curdy\"\n            },\n            {\n                \"mkc_id\": 1822,\n                \"mkc_fullname\": \"Sue Jones\"\n            },\n            {\n                \"mkc_id\": 1823,\n                \"mkc_fullname\": \"XXXXX YYYY\"\n            },\n            {\n                \"mkc_id\": 2118,\n                \"mkc_fullname\": \"zzz zzzzz\"\n            }\n        ]\n    }\n}"}],"_postman_id":"bc1c52c7-fb90-427d-bc58-ada77b27aac5"},{"name":"addSite","id":"581b088d-087d-480a-bb78-4c3274f027b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"addSite\"},\r\n   \"body\":\r\n     [\r\n       {\"pjs_name\":\"Acton Lane South South West\",\r\n        \"pjc_id\":\"739\",\r\n        \"pjo_id\":\"433\",\r\n        \"pjs_pcode\":\"W4 5DG\"\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"4f54f813-f838-4b32-9df9-e1d6665f8fb0","name":"addSite","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"addSite\"},\r\n   \"body\":\r\n     [\r\n       {\"pjs_name\":\"Acton Lane South South West\",\r\n        \"pjc_id\":\"739\",\r\n        \"pjo_id\":\"433\",\r\n        \"pjs_pcode\":\"W4 5DG\"\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 16:02:34 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"96"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"addSite\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            \"118445\"\n        ]\n    }\n}"}],"_postman_id":"581b088d-087d-480a-bb78-4c3274f027b9"},{"name":"updateSite","id":"989a5e1a-bfed-460b-b4e8-003b4d240199","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"updateSite\"},\r\n   \"body\":\r\n     [\r\n       {\"pjs_id\":\"118445\",\r\n        \"pjs_name\":\"Acton Lane South South East\",\r\n        \"pjs_town\":\"Slough1\",\r\n        \"pjs_status\":\"Inactive\"\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"e5e6df83-5cb2-4222-800a-840942d918cf","name":"updateSite","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"updateSite\"},\r\n   \"body\":\r\n     [\r\n       {\"pjs_id\":\"118445\",\r\n        \"pjs_name\":\"Acton Lane South South East\",\r\n        \"pjs_town\":\"Slough1\",\r\n        \"pjs_status\":\"Inactive\"\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 16:03:45 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"91"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"updateSite\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"989a5e1a-bfed-460b-b4e8-003b4d240199"},{"name":"deleteSite","id":"64300883-b68b-46b8-a85b-77a950d0546d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"deleteSite\"},\r\n   \"body\":\r\n     [\r\n       {\"pjs_id\":\"118445\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"3a1ba478-64cb-4e1b-be72-2dde04df169e","name":"deleteSite","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"deleteSite\"},\r\n   \"body\":\r\n     [\r\n       {\"pjs_id\":\"118445\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 16:04:55 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"91"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"deleteSite\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"64300883-b68b-46b8-a85b-77a950d0546d"}],"id":"b3d152fa-52cc-4a2b-951d-dd80d9f8767d","_postman_id":"b3d152fa-52cc-4a2b-951d-dd80d9f8767d","description":""},{"name":"Candidates","item":[{"name":"fetchCandidates","event":[{"listen":"prerequest","script":{"id":"7706f7cb-d928-4f55-b0cb-2591e5218044","exec":["pm.variables.set(\"method\",\"fetchCandidates\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"6c32db43-b7f3-4264-90ea-612b5c4b86b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pjc_id\"      : null,\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 1000\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"c522c086-1103-42d6-8636-efd462e13398","name":"fetchCandidates","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pjc_id\"      : null,\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 1000\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 13:34:10 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchCandidates\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"mkc_id\": 166,\n                \"mkc_firstname\": \"Anthony\",\n                \"mkc_surname\": \"Brook\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1969-01-01\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 466,\n                \"pjc_name\": \"Concept Building Services STH LTD\",\n                \"mkc_sytt_id_position\": 215,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"The GABLES\",\n                \"mkc_address2\": \"Market Square\",\n                \"mkc_town\": \"Princes Risbrough\",\n                \"mkc_county\": \"Buckinghamshire\",\n                \"mkc_pcode\": \"HP27 0AN\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"01844346778\",\n                \"mkc_mobile\": \"07917 574603\",\n                \"mkc_email\": \"john@chase-mortgages.co.uk\",\n                \"mkc_linkedin\": \"cccddEEEFFFgg\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"A car\",\n                \"mkc_salary\": \"The salary\",\n                \"mkc_benefits\": \"Some benefits\",\n                \"mkc_sytt_id_source\": 463,\n                \"mkc_sytt_desc_source\": \"LinkedIn\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": 7791,\n                \"mkc_created\": \"2016-11-17 08:05:35\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-06-25 15:39:15\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"aaaaaaaaaaaaaa\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-07-01\",\n                    \"AdditionalDetails_16_Text2\": \"text22222222222222\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"75211\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"on\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    }\n                ],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 1270,\n                \"mkc_firstname\": \"Aaron\",\n                \"mkc_surname\": \"Pearson\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 301,\n                \"pjc_name\": \"Volkerfitzpatrick LTD\",\n                \"mkc_sytt_id_position\": 299,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"W1A 1AA\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-01-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"01462814455\",\n                \"mkc_mobile\": \"07967 792 418\",\n                \"mkc_email\": \"Aaronx.pearson@willmottdixon.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 422,\n                \"mkc_sytt_desc_office\": \"London (Moorgate)\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2018-07-13 14:09:31\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 9,\n                        \"mkcy_desc\": \"COSS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-05-31\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-05-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 8,\n                        \"mkt_desc\": \"Medical\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 9,\n                        \"mkt_desc\": \"Right to Work\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 4,\n                        \"mkt_desc\": \"TKT C\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 7,\n                        \"mkt_desc\": \"TKT D\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 1418,\n                \"mkc_firstname\": \"Mark \",\n                \"mkc_surname\": \"Collins\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 560,\n                \"pjc_name\": \"Engie\",\n                \"mkc_sytt_id_position\": 217,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-03-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 111222\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 489,\n                \"mkc_sytt_desc_source\": \"Rugby World Cup Planner\",\n                \"mkc_sytt_id_office\": 419,\n                \"mkc_sytt_desc_office\": \"Manchester\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2018-09-20 09:51:21\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 1717,\n                \"mkc_firstname\": \"David\",\n                \"mkc_surname\": \"O'Byrne\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 1000,\n                \"pjc_name\": \"ABC BUILDING & MAINTENANCE CONTRACTS LTD\",\n                \"mkc_sytt_id_position\": 368,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"39 Doncaster Lane\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"Doncaster\",\n                \"mkc_county\": \"South Yorkshire\",\n                \"mkc_pcode\": \"DN6 7QP\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"07831603957\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"becky.winder@keepmoat.com\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 419,\n                \"mkc_sytt_desc_office\": \"Manchester\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2019-12-14 17:01:46\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 1751,\n                \"mkc_firstname\": \"Fred\",\n                \"mkc_surname\": \"Bloggsy\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 466,\n                \"pjc_name\": \"Concept Building Services STH LTD\",\n                \"mkc_sytt_id_position\": 364,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"EC1\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"5355543\",\n                \"mkc_mobile\": \"07917 354657\",\n                \"mkc_email\": \"aaa@bbc.co.uk\",\n                \"mkc_linkedin\": \"dfeert\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 548,\n                \"mkc_sytt_desc_source\": \"Sign up\",\n                \"mkc_sytt_id_office\": 422,\n                \"mkc_sytt_desc_office\": \"London (Moorgate)\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2020-12-22 18:03:08\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-06-06 12:52:58\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 9,\n                        \"mkcy_desc\": \"COSS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-06-01\",\n                        \"mkcyd_valid_to\": \"2024-06-30\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"2024-05-31\"\n                    },\n                    {\n                        \"mkt_id\": 5,\n                        \"mkt_desc\": \"TKT B\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 1766,\n                \"mkc_firstname\": \"Peter\",\n                \"mkc_surname\": \"Green\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 624,\n                \"pjc_name\": \"Abbey Pynford\",\n                \"mkc_sytt_id_position\": 507,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"WC1\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"4564564\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"peter.green@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 548,\n                \"mkc_sytt_desc_source\": \"Sign up\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-03-28 14:36:51\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"ABC\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"0\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"off\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"200\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 9,\n                        \"mkcy_desc\": \"COSS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-08-31\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-07-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 5,\n                        \"mkt_desc\": \"TKT B\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 1768,\n                \"mkc_firstname\": \"Tom\",\n                \"mkc_surname\": \"Petty\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 1161,\n                \"pjc_name\": \"A&B Roofing\",\n                \"mkc_sytt_id_position\": 538,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"EC1\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"4564664\",\n                \"mkc_mobile\": \"4646\",\n                \"mkc_email\": \"aaa@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 489,\n                \"mkc_sytt_desc_source\": \"Rugby World Cup Planner\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-03-30 17:50:06\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-06-07 11:19:04\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 4,\n                        \"mkt_desc\": \"TKT C\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 1774,\n                \"mkc_firstname\": \"Patti\",\n                \"mkc_surname\": \"O'Smith\",\n                \"mkc_sytt_id_title\": 82791,\n                \"mkc_sytt_desc_title\": \"Ms\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 301,\n                \"pjc_name\": \"Volkerfitzpatrick LTD\",\n                \"mkc_sytt_id_position\": 468,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"aaaaaaaaaaaaaaaa\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"EC1\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2022-01-30\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"3424234\",\n                \"mkc_mobile\": \"346475675\",\n                \"mkc_email\": \"patti.smith@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 6,\n                \"mkc_syu_fullname_consultant\": \"Fred Bloggsss\",\n                \"mkc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 548,\n                \"mkc_sytt_desc_source\": \"Sign up\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-08-08 11:45:55\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 15:37:01\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"text11111111111\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-05-01\",\n                    \"AdditionalDetails_16_Text2\": \"test22222222222222222\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"ABC\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"15\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-06-30\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 1787,\n                \"mkc_firstname\": \"Freda\",\n                \"mkc_surname\": \"Smith\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 389,\n                \"pjc_name\": \"Balfour Beatty Regional Construction (Airport) Limited\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"W1 1AA\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2021-10-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"01895 822345\",\n                \"mkc_mobile\": \"t46464\",\n                \"mkc_email\": \"fred@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 489,\n                \"mkc_sytt_desc_source\": \"Rugby World Cup Planner\",\n                \"mkc_sytt_id_office\": 421,\n                \"mkc_sytt_desc_office\": \"Potters Bar\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"off\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-10-17 17:01:35\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 1801,\n                \"mkc_firstname\": \"Bill\",\n                \"mkc_surname\": \"Smith\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 703,\n                \"pjc_name\": \"ACS Professionals in Construction Ltd\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"UB9\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2023-02-27\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"645645\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"bill@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 548,\n                \"mkc_sytt_desc_source\": \"Sign up\",\n                \"mkc_sytt_id_office\": 421,\n                \"mkc_sytt_desc_office\": \"Potters Bar\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"off\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-11-29 14:14:08\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 1802,\n                \"mkc_firstname\": \"Pete\",\n                \"mkc_surname\": \"Smith\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 703,\n                \"pjc_name\": \"ACS Professionals in Construction Ltd\",\n                \"mkc_sytt_id_position\": 364,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"UB9\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"e576576456\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"pete@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 489,\n                \"mkc_sytt_desc_source\": \"Rugby World Cup Planner\",\n                \"mkc_sytt_id_office\": 421,\n                \"mkc_sytt_desc_office\": \"Potters Bar\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"off\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-11-29 14:20:02\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 1807,\n                \"mkc_firstname\": \"Joe\",\n                \"mkc_surname\": \"Bloggx\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"mkc_sytt_id_position\": 377,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 111222\",\n                \"mkc_email\": \"joe.bloggs@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 489,\n                \"mkc_sytt_desc_source\": \"Rugby World Cup Planner\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2022-03-25 14:12:50\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-08-12 15:13:42\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 2,\n                        \"mkcy_desc\": \"COMP A\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    },\n                    {\n                        \"mkcy_id\": 3,\n                        \"mkcy_desc\": \"COMP B\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 4,\n                        \"mkcy_desc\": \"COMP C\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 5,\n                        \"mkcy_desc\": \"COMP D\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"2024-06-30\"\n                    },\n                    {\n                        \"mkcy_id\": 8,\n                        \"mkcy_desc\": \"COMP F\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    },\n                    {\n                        \"mkcy_id\": 13,\n                        \"mkcy_desc\": \"TESTAA\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"2024-05-01\"\n                    },\n                    {\n                        \"mkt_id\": 5,\n                        \"mkt_desc\": \"TKT B\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 4,\n                        \"mkt_desc\": \"TKT C\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 7,\n                        \"mkt_desc\": \"TKT D\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 1,\n                        \"mkt_desc\": \"TKT F\",\n                        \"mktt_expires\": \"2024-06-26\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 2115,\n                \"mkc_firstname\": \"A New\",\n                \"mkc_surname\": \"Candidate\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 389,\n                \"pjc_name\": \"Balfour Beatty Regional Construction (Airport) Limited\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07917574603\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 460,\n                \"mkc_sytt_desc_source\": \"Career Structure\",\n                \"mkc_sytt_id_office\": 425,\n                \"mkc_sytt_desc_office\": \"Glasgow\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2023-09-10 14:59:45\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2120,\n                \"mkc_firstname\": \"Peterrr\",\n                \"mkc_surname\": \"Green\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 464,\n                \"pjc_name\": \"Morgan Sindall\",\n                \"mkc_sytt_id_position\": 337,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2023-12-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"01895 111222\",\n                \"mkc_mobile\": \"07777 222222\",\n                \"mkc_email\": \"peter.green@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 548,\n                \"mkc_sytt_desc_source\": \"Sign up\",\n                \"mkc_sytt_id_office\": 420,\n                \"mkc_sytt_desc_office\": \"Leeds\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2023-09-30 16:08:19\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 2154,\n                \"mkc_firstname\": \"Fred\",\n                \"mkc_surname\": \"Crow\",\n                \"mkc_sytt_id_title\": 82792,\n                \"mkc_sytt_desc_title\": \"Dr\",\n                \"mkc_dob\": \"1951-03-31\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82794,\n                \"mkc_sytt_desc_nationality\": \"Irish\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"SSSSS\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"CF1 1AA\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"01895 654321\",\n                \"mkc_mobile\": \"07777 111111\",\n                \"mkc_email\": \"aaaa@bbc.co.uk\",\n                \"mkc_linkedin\": \"aaaaaaa\",\n                \"mkc_syu_id_bdm\": 6,\n                \"mkc_syu_fullname_consultant\": \"Steve Curd\",\n                \"mkc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 466,\n                \"mkc_sytt_desc_source\": \"Headhunt\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2023-11-11 16:45:24\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-07-04 10:53:18\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"xxxxxxxxxxxxxxxxxx\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2184,\n                \"mkc_firstname\": \"Adam\",\n                \"mkc_surname\": \"Smithey\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 13509,\n                \"pjc_name\": \"Prospect Aa04\",\n                \"mkc_sytt_id_position\": 393,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"01895 111 222\",\n                \"mkc_mobile\": \"07777 111 333\",\n                \"mkc_email\": \"adam.smithey@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2023-12-22 09:34:32\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-03 19:25:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2186,\n                \"mkc_firstname\": \"William\",\n                \"mkc_surname\": \"Collins\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 301,\n                \"pjc_name\": \"Volkerfitzpatrick LTD\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"01895 222333\",\n                \"mkc_mobile\": \"07777 111222\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 548,\n                \"mkc_sytt_desc_source\": \"Sign up\",\n                \"mkc_sytt_id_office\": 425,\n                \"mkc_sytt_desc_office\": \"Glasgow\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2023-12-23 17:33:04\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2227,\n                \"mkc_firstname\": \"Fred\",\n                \"mkc_surname\": \"Bloggs\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"mkc_sytt_id_position\": 364,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"EC1\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-12-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"07777 111222\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 467,\n                \"mkc_sytt_desc_source\": \"Other\",\n                \"mkc_sytt_id_office\": 419,\n                \"mkc_sytt_desc_office\": \"Manchester\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-03-15 15:29:47\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"aaa\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"bbb\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"ABC\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-05-31\"\n                    }\n                ],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2229,\n                \"mkc_firstname\": \"Shania\",\n                \"mkc_surname\": \"Twain\",\n                \"mkc_sytt_id_title\": 82791,\n                \"mkc_sytt_desc_title\": \"Ms\",\n                \"mkc_dob\": \"1990-01-01\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 301,\n                \"pjc_name\": \"Volkerfitzpatrick LTD\",\n                \"mkc_sytt_id_position\": 428,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"ssssssssssssss\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"W1\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"077777 111222\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 3,\n                \"mkc_syu_fullname_consultant\": \"Steve Curd\",\n                \"mkc_syu_fullname_bdm\": \"John Smith\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"Â£50K\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 489,\n                \"mkc_sytt_desc_source\": \"Rugby World Cup Planner\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-03-15 16:13:14\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-05-24 15:37:32\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 2241,\n                \"mkc_firstname\": \"aaa\",\n                \"mkc_surname\": \"bbbb cccc\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 111222\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 462,\n                \"mkc_sytt_desc_source\": \"Total Jobs\",\n                \"mkc_sytt_id_office\": 419,\n                \"mkc_sytt_desc_office\": \"Manchester\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-05-16 14:43:26\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2245,\n                \"mkc_firstname\": \"Tom\",\n                \"mkc_surname\": \"Jones\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1940-06-14\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 1306,\n                \"pjc_name\": \"0000011122Xyz1aaB\",\n                \"mkc_sytt_id_position\": 370,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"Chief Estimator\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"CF1 1AA\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-30\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777666777\",\n                \"mkc_email\": \"tom.jones@bbc.co,uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 6,\n                \"mkc_syu_fullname_consultant\": \"Steve Curd\",\n                \"mkc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 466,\n                \"mkc_sytt_desc_source\": \"Headhunt\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-05-24 15:45:30\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-06-07 11:16:23\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"AAA ABC FFF GGGG\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-05-08\",\n                    \"AdditionalDetails_16_Text2\": \"BBB\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"0\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"off\",\n                    \"AdditionalDetails2_71_Text1\": \"aaaaaaaaaaaaaaaaa\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"15\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2249,\n                \"mkc_firstname\": \"Don\",\n                \"mkc_surname\": \"McLean\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1908-01-01\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82794,\n                \"mkc_sytt_desc_nationality\": \"Irish\",\n                \"pjc_id\": 280,\n                \"pjc_name\": \"BAM Construction LTD\",\n                \"mkc_sytt_id_position\": 364,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"res\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 6,\n                \"mkc_syu_fullname_consultant\": \"Fred Bloggsss\",\n                \"mkc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 466,\n                \"mkc_sytt_desc_source\": \"Headhunt\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-05-26 17:28:10\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-06-22 14:47:15\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2251,\n                \"mkc_firstname\": \"Mariah\",\n                \"mkc_surname\": \"Carey\",\n                \"mkc_sytt_id_title\": 82791,\n                \"mkc_sytt_desc_title\": \"Ms\",\n                \"mkc_dob\": \"1969-03-27\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82794,\n                \"mkc_sytt_desc_nationality\": \"Irish\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 541,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"ssssss\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"07777111222\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 460,\n                \"mkc_sytt_desc_source\": \"Career Structure\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-05-26 18:21:27\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-01 18:27:51\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"ABC\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-01-01\",\n                    \"AdditionalDetails_16_Text2\": \"SSSSSSSSSSSS\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"0\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"on\",\n                    \"AdditionalDetails2_71_Text1\": \"aaaaaaaaaaaaa\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"123\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"200.0\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"350.5\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2264,\n                \"mkc_firstname\": \"aaaaaaaaaaa\",\n                \"mkc_surname\": \"gggggggggg\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"ddddddddddd\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 3,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"John Smith\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 464,\n                \"mkc_sytt_desc_source\": \"OB Website\",\n                \"mkc_sytt_id_office\": 419,\n                \"mkc_sytt_desc_office\": \"Manchester\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-05-30 09:03:25\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-05-30 09:03:25\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2265,\n                \"mkc_firstname\": \"Ziggy\",\n                \"mkc_surname\": \"Stardust\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"1951-03-31\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"Senior Estimator\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"ziggy@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-06-06 15:58:54\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-12 12:01:54\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"sssssssssssssss\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-06-30\",\n                    \"AdditionalDetails_16_Text2\": \"ssssssssssss\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"75210\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"off\",\n                    \"AdditionalDetails2_71_Text1\": \"srteterter\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"123\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"1500.00\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"2000.00\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 11,\n                        \"mkcy_desc\": \"Civils Team Leader/Supervisor (Trackside Patrols)\",\n                        \"mkcyd_status\": \"Inactive\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 18,\n                        \"mkcy_desc\": \"TESTD\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-03-03\",\n                        \"mkcyd_valid_to\": \"2024-09-30\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 11,\n                        \"mkt_desc\": \"TICKET 2\",\n                        \"mktt_expires\": \"2024-12-31\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 2267,\n                \"mkc_firstname\": \"ttt\",\n                \"mkc_surname\": \"ttt\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 310,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 461,\n                \"mkc_sytt_desc_source\": \"Jobsite\",\n                \"mkc_sytt_id_office\": 425,\n                \"mkc_sytt_desc_office\": \"Glasgow\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-06-21 09:24:24\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-06-21 09:28:41\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2287,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Kruger\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1951-03-04\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"Senior Architect\",\n                \"mkc_address1\": \"Brockley Cottage\",\n                \"mkc_address2\": \"Breakspear Road North\",\n                \"mkc_town\": \"Harefield\",\n                \"mkc_county\": \"Middlesex\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-06-30\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07941165803\",\n                \"mkc_email\": \"freddy.kruger@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 3,\n                \"mkc_syu_fullname_consultant\": \"Steve Curd\",\n                \"mkc_syu_fullname_bdm\": \"John Smith\",\n                \"mkc_car\": \"Seat Leon\",\n                \"mkc_salary\": \"Â£75K\",\n                \"mkc_benefits\": \"Private Medical\",\n                \"mkc_sytt_id_source\": 460,\n                \"mkc_sytt_desc_source\": \"Career Structure\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-06-30 17:44:27\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-04 11:23:43\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"aaaaaaaaaaaaaaaa\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-09-01\",\n                    \"AdditionalDetails_16_Text2\": \"bbbbbbbbbbbbbbbbbbbb\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"ABC\",\n                    \"AdditionalDetails_70_T&C\": \"0\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"off\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2291,\n                \"mkc_firstname\": \"Lauren\",\n                \"mkc_surname\": \"Laverne\",\n                \"mkc_sytt_id_title\": 82791,\n                \"mkc_sytt_desc_title\": \"Ms\",\n                \"mkc_dob\": \"1990-01-01\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 222333\",\n                \"mkc_email\": \"lauren@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 425,\n                \"mkc_sytt_desc_office\": \"Glasgow\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-07-31 12:19:31\",\n                \"mkc_syu_id_createdby\": 3,\n                \"mkc_syu_fullname_createdby\": \"John Smith\",\n                \"mkc_updated\": \"2024-07-31 12:19:31\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2295,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Kruger 2\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 111222\",\n                \"mkc_email\": \"fred@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"Harry Belafonte\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-08-06 16:07:27\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-10 10:44:40\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2296,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Kruger 3\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"fred@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 466,\n                \"mkc_sytt_desc_source\": \"Headhunt\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-08-10 10:48:17\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-10 10:48:35\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2297,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Kruger10\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1951-03-04\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"Senior Architect\",\n                \"mkc_address1\": \"Brockley Cottage\",\n                \"mkc_address2\": \"Breakspear Road North\",\n                \"mkc_town\": \"Harefield\",\n                \"mkc_county\": \"Middlesex\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07941165803\",\n                \"mkc_email\": \"freddy.kruger@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 3,\n                \"mkc_syu_fullname_consultant\": \"Steve Curd\",\n                \"mkc_syu_fullname_bdm\": \"John Smith\",\n                \"mkc_car\": \"Seat Leon\",\n                \"mkc_salary\": \"Â£75K\",\n                \"mkc_benefits\": \"Private Medical\",\n                \"mkc_sytt_id_source\": 460,\n                \"mkc_sytt_desc_source\": \"Career Structure\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-08-12 12:03:56\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-12 12:03:56\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"6c32db43-b7f3-4264-90ea-612b5c4b86b0"},{"name":"fetchUpdatedCandidates","event":[{"listen":"prerequest","script":{"id":"309bcb93-1c96-4f7e-99a4-e6093cab30e9","exec":["pm.variables.set(\"method\",\"fetchUpdatedCandidates\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"452a7305-1e64-46a0-be04-dddd23b37c68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"f41f242f-1008-4181-801f-661e3a762516","name":"fetchUpdatedCandidates","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 13:37:42 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUpdatedCandidates\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 166,\n                \"mkc_firstname\": \"Anthony\",\n                \"mkc_surname\": \"Brook\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1969-01-01\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 466,\n                \"pjc_name\": \"Concept Building Services STH LTD\",\n                \"mkc_sytt_id_position\": 215,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"The GABLES\",\n                \"mkc_address2\": \"Market Square\",\n                \"mkc_town\": \"Princes Risbrough\",\n                \"mkc_county\": \"Buckinghamshire\",\n                \"mkc_pcode\": \"HP27 0AN\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"01844346778\",\n                \"mkc_mobile\": \"07917 574603\",\n                \"mkc_email\": \"john@chase-mortgages.co.uk\",\n                \"mkc_linkedin\": \"cccddEEEFFFgg\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"A car\",\n                \"mkc_salary\": \"The salary\",\n                \"mkc_benefits\": \"Some benefits\",\n                \"mkc_sytt_id_source\": 463,\n                \"mkc_sytt_desc_source\": \"LinkedIn\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": 7791,\n                \"mkc_created\": \"2016-11-17 08:05:35\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-06-25 15:39:15\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"aaaaaaaaaaaaaa\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-07-01\",\n                    \"AdditionalDetails_16_Text2\": \"text22222222222222\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"75211\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"on\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    }\n                ],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 1751,\n                \"mkc_firstname\": \"Fred\",\n                \"mkc_surname\": \"Bloggsy\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 466,\n                \"pjc_name\": \"Concept Building Services STH LTD\",\n                \"mkc_sytt_id_position\": 364,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"EC1\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"5355543\",\n                \"mkc_mobile\": \"07917 354657\",\n                \"mkc_email\": \"aaa@bbc.co.uk\",\n                \"mkc_linkedin\": \"dfeert\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 548,\n                \"mkc_sytt_desc_source\": \"Sign up\",\n                \"mkc_sytt_id_office\": 422,\n                \"mkc_sytt_desc_office\": \"London (Moorgate)\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2020-12-22 18:03:08\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-06-06 12:52:58\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 9,\n                        \"mkcy_desc\": \"COSS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-06-01\",\n                        \"mkcyd_valid_to\": \"2024-06-30\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"2024-05-31\"\n                    },\n                    {\n                        \"mkt_id\": 5,\n                        \"mkt_desc\": \"TKT B\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 1766,\n                \"mkc_firstname\": \"Peter\",\n                \"mkc_surname\": \"Green\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 624,\n                \"pjc_name\": \"Abbey Pynford\",\n                \"mkc_sytt_id_position\": 507,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"WC1\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"4564564\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"peter.green@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 548,\n                \"mkc_sytt_desc_source\": \"Sign up\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-03-28 14:36:51\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"ABC\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"0\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"off\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"200\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 9,\n                        \"mkcy_desc\": \"COSS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-08-31\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-07-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 5,\n                        \"mkt_desc\": \"TKT B\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 1768,\n                \"mkc_firstname\": \"Tom\",\n                \"mkc_surname\": \"Petty\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 1161,\n                \"pjc_name\": \"A&B Roofing\",\n                \"mkc_sytt_id_position\": 538,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"EC1\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"4564664\",\n                \"mkc_mobile\": \"4646\",\n                \"mkc_email\": \"aaa@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 489,\n                \"mkc_sytt_desc_source\": \"Rugby World Cup Planner\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-03-30 17:50:06\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-06-07 11:19:04\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 4,\n                        \"mkt_desc\": \"TKT C\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 1774,\n                \"mkc_firstname\": \"Patti\",\n                \"mkc_surname\": \"O'Smith\",\n                \"mkc_sytt_id_title\": 82791,\n                \"mkc_sytt_desc_title\": \"Ms\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 301,\n                \"pjc_name\": \"Volkerfitzpatrick LTD\",\n                \"mkc_sytt_id_position\": 468,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"aaaaaaaaaaaaaaaa\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"EC1\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2022-01-30\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"3424234\",\n                \"mkc_mobile\": \"346475675\",\n                \"mkc_email\": \"patti.smith@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 6,\n                \"mkc_syu_fullname_consultant\": \"Fred Bloggsss\",\n                \"mkc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 548,\n                \"mkc_sytt_desc_source\": \"Sign up\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-08-08 11:45:55\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-05-24 15:37:01\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"text11111111111\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-05-01\",\n                    \"AdditionalDetails_16_Text2\": \"test22222222222222222\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"ABC\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"15\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-06-30\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 1807,\n                \"mkc_firstname\": \"Joe\",\n                \"mkc_surname\": \"Bloggx\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"mkc_sytt_id_position\": 377,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 111222\",\n                \"mkc_email\": \"joe.bloggs@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 489,\n                \"mkc_sytt_desc_source\": \"Rugby World Cup Planner\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2022-03-25 14:12:50\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-08-12 15:13:42\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 2,\n                        \"mkcy_desc\": \"COMP A\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    },\n                    {\n                        \"mkcy_id\": 3,\n                        \"mkcy_desc\": \"COMP B\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 4,\n                        \"mkcy_desc\": \"COMP C\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 5,\n                        \"mkcy_desc\": \"COMP D\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"2024-06-30\"\n                    },\n                    {\n                        \"mkcy_id\": 8,\n                        \"mkcy_desc\": \"COMP F\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    },\n                    {\n                        \"mkcy_id\": 13,\n                        \"mkcy_desc\": \"TESTAA\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"2024-05-01\"\n                    },\n                    {\n                        \"mkt_id\": 5,\n                        \"mkt_desc\": \"TKT B\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 4,\n                        \"mkt_desc\": \"TKT C\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 7,\n                        \"mkt_desc\": \"TKT D\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 1,\n                        \"mkt_desc\": \"TKT F\",\n                        \"mktt_expires\": \"2024-06-26\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 2154,\n                \"mkc_firstname\": \"Fred\",\n                \"mkc_surname\": \"Crow\",\n                \"mkc_sytt_id_title\": 82792,\n                \"mkc_sytt_desc_title\": \"Dr\",\n                \"mkc_dob\": \"1951-03-31\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82794,\n                \"mkc_sytt_desc_nationality\": \"Irish\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"SSSSS\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"CF1 1AA\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"01895 654321\",\n                \"mkc_mobile\": \"07777 111111\",\n                \"mkc_email\": \"aaaa@bbc.co.uk\",\n                \"mkc_linkedin\": \"aaaaaaa\",\n                \"mkc_syu_id_bdm\": 6,\n                \"mkc_syu_fullname_consultant\": \"Steve Curd\",\n                \"mkc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 466,\n                \"mkc_sytt_desc_source\": \"Headhunt\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2023-11-11 16:45:24\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-07-04 10:53:18\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"xxxxxxxxxxxxxxxxxx\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2184,\n                \"mkc_firstname\": \"Adam\",\n                \"mkc_surname\": \"Smithey\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 13509,\n                \"pjc_name\": \"Prospect Aa04\",\n                \"mkc_sytt_id_position\": 393,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"01895 111 222\",\n                \"mkc_mobile\": \"07777 111 333\",\n                \"mkc_email\": \"adam.smithey@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2023-12-22 09:34:32\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-03 19:25:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2227,\n                \"mkc_firstname\": \"Fred\",\n                \"mkc_surname\": \"Bloggs\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"mkc_sytt_id_position\": 364,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"EC1\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-12-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"07777 111222\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 467,\n                \"mkc_sytt_desc_source\": \"Other\",\n                \"mkc_sytt_id_office\": 419,\n                \"mkc_sytt_desc_office\": \"Manchester\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-03-15 15:29:47\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-05-24 13:23:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"aaa\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"bbb\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"ABC\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-05-31\"\n                    }\n                ],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2245,\n                \"mkc_firstname\": \"Tom\",\n                \"mkc_surname\": \"Jones\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1940-06-14\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 1306,\n                \"pjc_name\": \"0000011122Xyz1aaB\",\n                \"mkc_sytt_id_position\": 370,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"Chief Estimator\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"CF1 1AA\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-30\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777666777\",\n                \"mkc_email\": \"tom.jones@bbc.co,uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 6,\n                \"mkc_syu_fullname_consultant\": \"Steve Curd\",\n                \"mkc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 466,\n                \"mkc_sytt_desc_source\": \"Headhunt\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-05-24 15:45:30\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-06-07 11:16:23\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"AAA ABC FFF GGGG\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-05-08\",\n                    \"AdditionalDetails_16_Text2\": \"BBB\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"0\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"off\",\n                    \"AdditionalDetails2_71_Text1\": \"aaaaaaaaaaaaaaaaa\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"15\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2249,\n                \"mkc_firstname\": \"Don\",\n                \"mkc_surname\": \"McLean\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1908-01-01\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82794,\n                \"mkc_sytt_desc_nationality\": \"Irish\",\n                \"pjc_id\": 280,\n                \"pjc_name\": \"BAM Construction LTD\",\n                \"mkc_sytt_id_position\": 364,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"res\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 6,\n                \"mkc_syu_fullname_consultant\": \"Fred Bloggsss\",\n                \"mkc_syu_fullname_bdm\": \"Pete Baxter\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 466,\n                \"mkc_sytt_desc_source\": \"Headhunt\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-05-26 17:28:10\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-06-22 14:47:15\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2251,\n                \"mkc_firstname\": \"Mariah\",\n                \"mkc_surname\": \"Carey\",\n                \"mkc_sytt_id_title\": 82791,\n                \"mkc_sytt_desc_title\": \"Ms\",\n                \"mkc_dob\": \"1969-03-27\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82794,\n                \"mkc_sytt_desc_nationality\": \"Irish\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 541,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"ssssss\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-05-31\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"on\",\n                \"mkc_phone\": \"07777111222\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 460,\n                \"mkc_sytt_desc_source\": \"Career Structure\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-05-26 18:21:27\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-01 18:27:51\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"ABC\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-01-01\",\n                    \"AdditionalDetails_16_Text2\": \"SSSSSSSSSSSS\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"0\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"on\",\n                    \"AdditionalDetails2_71_Text1\": \"aaaaaaaaaaaaa\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"123\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"200.0\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"350.5\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2264,\n                \"mkc_firstname\": \"aaaaaaaaaaa\",\n                \"mkc_surname\": \"gggggggggg\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"ddddddddddd\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 3,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"John Smith\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 464,\n                \"mkc_sytt_desc_source\": \"OB Website\",\n                \"mkc_sytt_id_office\": 419,\n                \"mkc_sytt_desc_office\": \"Manchester\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-05-30 09:03:25\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-05-30 09:03:25\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2265,\n                \"mkc_firstname\": \"Ziggy\",\n                \"mkc_surname\": \"Stardust\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"1951-03-31\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"Senior Estimator\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"ziggy@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-06-06 15:58:54\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-12 12:01:54\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"sssssssssssssss\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-06-30\",\n                    \"AdditionalDetails_16_Text2\": \"ssssssssssss\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"BBC\",\n                    \"AdditionalDetails_70_T&C\": \"75210\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"off\",\n                    \"AdditionalDetails2_71_Text1\": \"srteterter\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"123\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"1500.00\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"2000.00\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 11,\n                        \"mkcy_desc\": \"Civils Team Leader/Supervisor (Trackside Patrols)\",\n                        \"mkcyd_status\": \"Inactive\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 18,\n                        \"mkcy_desc\": \"TESTD\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-03-03\",\n                        \"mkcyd_valid_to\": \"2024-09-30\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 11,\n                        \"mkt_desc\": \"TICKET 2\",\n                        \"mktt_expires\": \"2024-12-31\"\n                    }\n                ]\n            },\n            {\n                \"mkc_id\": 2267,\n                \"mkc_firstname\": \"ttt\",\n                \"mkc_surname\": \"ttt\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 310,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 461,\n                \"mkc_sytt_desc_source\": \"Jobsite\",\n                \"mkc_sytt_id_office\": 425,\n                \"mkc_sytt_desc_office\": \"Glasgow\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-06-21 09:24:24\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-06-21 09:28:41\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": null,\n                \"mkc_firstname\": \"\",\n                \"mkc_surname\": \"\",\n                \"mkc_sytt_id_title\": null,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": null,\n                \"mkc_sytt_id_gender\": null,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": null,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": null,\n                \"mkc_contract_end_date\": null,\n                \"mkc_agency\": null,\n                \"mkc_permanent\": null,\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": null,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": null,\n                \"mkc_sytt_desc_source\": \"\",\n                \"mkc_sytt_id_office\": null,\n                \"mkc_sytt_desc_office\": \"\",\n                \"mkc_salescontact\": null,\n                \"mkc_candidate\": null,\n                \"mkc_referee\": null,\n                \"mkc_active\": null,\n                \"rdb_id\": null,\n                \"mkc_created\": null,\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": null,\n                \"mkc_syu_id_revby\": null,\n                \"mkc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2287,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Kruger\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1951-03-04\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"Senior Architect\",\n                \"mkc_address1\": \"Brockley Cottage\",\n                \"mkc_address2\": \"Breakspear Road North\",\n                \"mkc_town\": \"Harefield\",\n                \"mkc_county\": \"Middlesex\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"on\",\n                \"mkc_contract_end_date\": \"2024-06-30\",\n                \"mkc_agency\": \"2\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07941165803\",\n                \"mkc_email\": \"freddy.kruger@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 3,\n                \"mkc_syu_fullname_consultant\": \"Steve Curd\",\n                \"mkc_syu_fullname_bdm\": \"John Smith\",\n                \"mkc_car\": \"Seat Leon\",\n                \"mkc_salary\": \"Â£75K\",\n                \"mkc_benefits\": \"Private Medical\",\n                \"mkc_sytt_id_source\": 460,\n                \"mkc_sytt_desc_source\": \"Career Structure\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-06-30 17:44:27\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-04 11:23:43\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"aaaaaaaaaaaaaaaa\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"2024-09-01\",\n                    \"AdditionalDetails_16_Text2\": \"bbbbbbbbbbbbbbbbbbbb\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"ABC\",\n                    \"AdditionalDetails_70_T&C\": \"0\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"off\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2291,\n                \"mkc_firstname\": \"Lauren\",\n                \"mkc_surname\": \"Laverne\",\n                \"mkc_sytt_id_title\": 82791,\n                \"mkc_sytt_desc_title\": \"Ms\",\n                \"mkc_dob\": \"1990-01-01\",\n                \"mkc_sytt_id_gender\": 82796,\n                \"mkc_sytt_desc_gender\": \"Female\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 222333\",\n                \"mkc_email\": \"lauren@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 425,\n                \"mkc_sytt_desc_office\": \"Glasgow\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-07-31 12:19:31\",\n                \"mkc_syu_id_createdby\": 3,\n                \"mkc_syu_fullname_createdby\": \"John Smith\",\n                \"mkc_updated\": \"2024-07-31 12:19:31\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2295,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Kruger 2\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 111222\",\n                \"mkc_email\": \"fred@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"Harry Belafonte\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 465,\n                \"mkc_sytt_desc_source\": \"Referral\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-08-06 16:07:27\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-10 10:44:40\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2296,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Kruger 3\",\n                \"mkc_sytt_id_title\": 0,\n                \"mkc_sytt_desc_title\": \"\",\n                \"mkc_dob\": \"0000-00-00\",\n                \"mkc_sytt_id_gender\": 0,\n                \"mkc_sytt_desc_gender\": \"\",\n                \"mkc_sytt_id_nationality\": 0,\n                \"mkc_sytt_desc_nationality\": \"\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"\",\n                \"mkc_address1\": \"\",\n                \"mkc_address2\": \"\",\n                \"mkc_town\": \"\",\n                \"mkc_county\": \"\",\n                \"mkc_pcode\": \"\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"fred@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 0,\n                \"mkc_syu_fullname_consultant\": \"\",\n                \"mkc_syu_fullname_bdm\": \"\",\n                \"mkc_car\": \"\",\n                \"mkc_salary\": \"\",\n                \"mkc_benefits\": \"\",\n                \"mkc_sytt_id_source\": 466,\n                \"mkc_sytt_desc_source\": \"Headhunt\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-08-10 10:48:17\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-10 10:48:35\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"mkc_id\": 2297,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Kruger10\",\n                \"mkc_sytt_id_title\": 82788,\n                \"mkc_sytt_desc_title\": \"Mr\",\n                \"mkc_dob\": \"1951-03-04\",\n                \"mkc_sytt_id_gender\": 82795,\n                \"mkc_sytt_desc_gender\": \"Male\",\n                \"mkc_sytt_id_nationality\": 82793,\n                \"mkc_sytt_desc_nationality\": \"British\",\n                \"pjc_id\": 0,\n                \"pjc_name\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_position_desc\": \"\",\n                \"mkc_jobtitle\": \"Senior Architect\",\n                \"mkc_address1\": \"Brockley Cottage\",\n                \"mkc_address2\": \"Breakspear Road North\",\n                \"mkc_town\": \"Harefield\",\n                \"mkc_county\": \"Middlesex\",\n                \"mkc_pcode\": \"UB9 6NE\",\n                \"mkc_freelance\": \"off\",\n                \"mkc_contract_end_date\": \"0000-00-00\",\n                \"mkc_agency\": \"0\",\n                \"mkc_permanent\": \"off\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07941165803\",\n                \"mkc_email\": \"freddy.kruger@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_syu_id_bdm\": 3,\n                \"mkc_syu_fullname_consultant\": \"Steve Curd\",\n                \"mkc_syu_fullname_bdm\": \"John Smith\",\n                \"mkc_car\": \"Seat Leon\",\n                \"mkc_salary\": \"Â£75K\",\n                \"mkc_benefits\": \"Private Medical\",\n                \"mkc_sytt_id_source\": 460,\n                \"mkc_sytt_desc_source\": \"Career Structure\",\n                \"mkc_sytt_id_office\": 418,\n                \"mkc_sytt_desc_office\": \"Birmingham\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-08-12 12:03:56\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-12 12:03:56\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"AdditionalDetails_15_InBrief\": \"\",\n                    \"AdditionalDetails_14_AvailableFrom\": \"\",\n                    \"AdditionalDetails_16_Text2\": \"\",\n                    \"AdditionalDetails_69_FavouriteTVChannel\": \"\",\n                    \"AdditionalDetails_70_T&C\": \"\",\n                    \"AdditionalDetails_2073_IsPriority?\": \"\",\n                    \"AdditionalDetails2_71_Text1\": \"\",\n                    \"AdditionalDetails2_2074_Aninteger\": \"\",\n                    \"AdditionalDetails2_2075_ADecimal\": \"\",\n                    \"AdditionalDetails2_2076_ACurrencyField\": \"\",\n                    \"AdditionalDetails2_2077_ADate\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"452a7305-1e64-46a0-be04-dddd23b37c68"},{"name":"fetchCandidateNotes","id":"43c3c4d4-a4b7-4040-8f37-237c9ae4b83c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"localhostthereforenotrequired\",\r\n     \"method\"      : \"fetchCandidateNotes\",\r\n     \"mkc_id\"      : 2154}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"43c3c4d4-a4b7-4040-8f37-237c9ae4b83c"},{"name":"fetchUpdatedCandidateNotes","id":"0c4ade0f-398f-4ba6-bd00-053767e772bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"localhostthereforenotrequired\",\r\n     \"method\"      : \"fetchUpdatedCandidateNotes\",\r\n     \"mkc_id\"      : 2154,\r\n     \"updatesSince\" : \"\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c4ade0f-398f-4ba6-bd00-053767e772bb"},{"name":"addCandidate","event":[{"listen":"prerequest","script":{"id":"a924b400-5d85-4b0d-b76a-9b54bdbf0cd1","exec":["pm.variables.set(\"method\",\"addCandidate\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"be474427-5dc7-4631-babe-9f29bbe5cfb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":    \r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n        {\r\n            \"rdb_id\": \"330555\",\r\n            \"mkc_address1\":\"47 Albion Road\",\r\n            \"mkc_town\": \"St Peters\",\r\n            \"mkc_address2\": \"Broadstairs\",\r\n            \"mkc_pcode\": \"CT10 2UP\",\r\n            \"mkc_firstname\": \"John\",\r\n            \"mkc_surname\": \"Strike\",\r\n            \"mkc_sytt_id_office\": \"418\",\r\n            \"mkc_phone\": \"\",\r\n            \"mkc_mobile\": \"7725544668\",\r\n            \"mkc_email\": \"\",\r\n            \"mkc_sytt_id_gender\": \"82795\",\r\n            \"mkc_dob\": \"1971-01-12\",\r\n            \"mkc_jobtitle\": \"\",\r\n            \"mkc_syu_id_consultant\": \"\",\r\n            \"mkc_syu_id_bdm\": \"\",\r\n            \"mkc_sytt_id_source\": \"459\",\r\n            \"mkc_sytt_id_position\":\"215\",\r\n            \"mkc_sytt_id_region\":\"812\",\r\n        \"custom_fields\": {\r\n            \"69\": \"BBC\"\r\n        },\r\n        \"regions\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 812\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 813\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 814\r\n          }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"c5f9546e-8752-4554-a582-7fe81e98816a","name":"addCandidate","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":    \r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"mkc_firstname\":\"Freddy\",\r\n        \"mkc_surname\":\"Kruger10\",\r\n        \"mkc_sytt_id_title\":\"82788\",\r\n        \"mkc_dob\":\"1951-03-04\",\r\n        \"mkc_sytt_id_gender\":\"82795\",\r\n        \"mkc_sytt_id_nationality\":\"82793\",\r\n        \"pjc_id\":null,\r\n        \"pjo_id\":null,\r\n        \"mkc_sytt_id_position\":\"469\",\r\n        \"mkc_jobtitle\":\"Senior Architect\",\r\n        \"mkc_sytt_id_region\":\"812\",\r\n        \"mkc_freelance\":\"on\",\r\n        \"mkc_contract_end_date\":\"2024-06-30\",\r\n        \"mkc_mobile\":\"07941165803\",\r\n        \"mkc_email\":\"freddy.kruger@bbc.co.uk\",\r\n        \"mkc_address1\":\"Brockley Cottage\",\r\n        \"mkc_address2\":\"Breakspear Road North\",\r\n        \"mkc_town\":\"Harefield\",\r\n        \"mkc_county\":\"Middlesex\",\r\n        \"mkc_pcode\":\"UB9 6NE\",\r\n        \"mkc_car\":\"Seat Leon\",\r\n        \"mkc_salary\":\"£75K\",\r\n        \"mkc_benefits\":\"Private Medical\",\r\n        \"mkc_syu_id_consultant\":\"1\",\r\n        \"mkc_syu_id_bdm\":\"3\",\r\n        \"mkc_sytt_id_source\":\"460\",\r\n        \"mkc_sytt_id_office\":\"418\",\r\n        \"rdb_id\":null,\r\n        \"regions\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 812\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 813\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 814\r\n          }\r\n        ],\r\n        \"documents\": [\r\n            {\r\n             \"filename\": \"thisisacontactdocument.docx\",\r\n             \"documentname\": \"THISISACONTACTDOCUMENT\",\r\n             \"contents\": \"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\"\r\n            },\r\n            {\r\n             \"filename\": \"test.txt\",\r\n             \"documentname\": \"\",\r\n             \"contents\": \"VGhpcyBpcyBhIGNsaWVudCB0ZXh0IGZpbGU=\"\r\n            }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 16 Aug 2024 08:52:23 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"93"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"addCandidate\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            \"2300\"\n        ]\n    }\n}"}],"_postman_id":"be474427-5dc7-4631-babe-9f29bbe5cfb0"},{"name":"updateCandidate","event":[{"listen":"prerequest","script":{"id":"1cbede34-8ec5-46a4-839b-71afa0fa53c7","exec":["pm.variables.set(\"method\",\"updateCandidate\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"4b2d1906-28f8-4561-9941-5c552f84eff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"mkc_id\":\"2309\",\r\n        \"mkc_dob\":\"1951-03-31\",\r\n        \"mkc_jobtitle\":\"Senior Estimator\",\r\n        \"mkc_sytt_id_source\": 459,\r\n        \"mkc_sytt_id_office\": 424,\r\n        \"custom_fields\": {\r\n          \"69\": \"\"\r\n        },        \r\n        \"duties\": [\r\n            {\r\n                \"action\": \"A\",\r\n                \"mkcy_id\": null,\r\n                \"signal_id\": \"1004\",\r\n                \"mkcyd_valid_from\": \"2024-03-03\",\r\n                \"mkcyd_valid_to\": \"2024-09-30\",\r\n                \"mkcyd_status\": \"Active\"\r\n            }\r\n        ],\r\n        \"tickets\": [\r\n            {\r\n                \"action\": \"A\",\r\n                \"mkt_id\": \"11\",\r\n                \"signal_id\": null,\r\n                \"mktt_expires\": \"2024-12-31\"\r\n            }\r\n        ],\r\n        \"regions\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 812\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 813\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 814\r\n          }\r\n        ],\r\n        \"xdocuments\": [\r\n            {\r\n             \"filename\": \"thisisacontactdocument.docx\",\r\n             \"documentname\": \"THISISACONTACTDOCUMENT\",\r\n             \"contents\": \"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\"\r\n            },\r\n            {\r\n             \"filename\": \"test.txt\",\r\n             \"documentname\": \"\",\r\n             \"contents\": \"VGhpcyBpcyBhIGNsaWVudCB0ZXh0IGZpbGU=\"\r\n            }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"7971c82a-d8a2-4b4a-a9f1-4bc46d17b969","name":"updateCandidate","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"mkc_id\":\"2265\",\r\n        \"mkc_dob\":\"1951-03-31\",\r\n        \"mkc_jobtitle\":\"Senior Estimator\",\r\n        \"duties\": [\r\n            {\r\n                \"action\": \"A\",\r\n                \"mkcy_id\": null,\r\n                \"signal_id\": \"1004\",\r\n                \"mkcyd_valid_from\": \"2024-03-03\",\r\n                \"mkcyd_valid_to\": \"2024-09-30\",\r\n                \"mkcyd_status\": \"Active\"\r\n            }\r\n        ],\r\n        \"tickets\": [\r\n            {\r\n                \"action\": \"A\",\r\n                \"mkt_id\": \"11\",\r\n                \"signal_id\": null,\r\n                \"mktt_expires\": \"2024-12-31\"\r\n            }\r\n        ],\r\n        \"regions\": [\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 812\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 813\r\n          },\r\n          {\r\n           \"action\": \"A\",\r\n           \"sytt_id\": 814\r\n          }\r\n        ],\r\n        \"documents\": [\r\n            {\r\n             \"filename\": \"thisisacontactdocument.docx\",\r\n             \"documentname\": \"THISISACONTACTDOCUMENT\",\r\n             \"contents\": \"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\"\r\n            },\r\n            {\r\n             \"filename\": \"test.txt\",\r\n             \"documentname\": \"\",\r\n             \"contents\": \"VGhpcyBpcyBhIGNsaWVudCB0ZXh0IGZpbGU=\"\r\n            }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 16 Aug 2024 08:53:06 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"90"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"updateCandidate\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"4b2d1906-28f8-4561-9941-5c552f84eff3"},{"name":"deleteCandidate","event":[{"listen":"prerequest","script":{"id":"c694f814-c1b4-4707-89d5-574510adeebd","exec":["pm.variables.set(\"method\",\"deleteCandidate\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"48a56e0a-b218-4944-bc4c-3b3383a997c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"mkc_id\":\"2308\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"48a56e0a-b218-4944-bc4c-3b3383a997c8"}],"id":"7b7fa758-b845-4bad-adae-d551e11c50e2","_postman_id":"7b7fa758-b845-4bad-adae-d551e11c50e2","description":""},{"name":"Contacts","item":[{"name":"fetchContacts","event":[{"listen":"prerequest","script":{"id":"fbca6130-883b-4cf6-98c6-dcf3cd03f08b","exec":["pm.variables.set(\"method\",\"fetchContacts\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"5effb110-e276-4edf-b2ad-d5396b315d68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"mkc_id\"      : 2467,\r\n     \"pjc_id\"      : null,\r\n     \"pjg_id\"      : null}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"375bb975-2879-4847-ba2d-cf7d5c5b8efb","name":"fetchContacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"mkc_id\"      : \"2232\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 13:42:20 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1433"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchContacts\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"mkc_id\": 2232,\n                \"mkc_firstname\": \"Frederick\",\n                \"mkc_surname\": \"Engels\",\n                \"pjb_id\": 3,\n                \"pjb_name\": \"BU O'SMITH\",\n                \"pjc_id\": 282,\n                \"pjc_name\": \"Amberr Construction Services Ltd\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 0,\n                \"mkc_sytt_desc_position\": \"\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"fred@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"off\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-04-06 13:29:09\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-06-25 17:12:59\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"bbbbbbbbbbbb\",\n                    \"OtherDetails_13_ADate\": \"2024-05-01\",\n                    \"OtherDetails_146_SomeTextbbb\": \"sssssssssssssss\",\n                    \"OtherDetails_147_AnInteger\": \"12\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 2,\n                        \"mkcy_desc\": \"COMP A\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-05-31\"\n                    },\n                    {\n                        \"mkcy_id\": 9,\n                        \"mkcy_desc\": \"COSS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 9,\n                        \"mkt_desc\": \"Right to Work\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 5,\n                        \"mkt_desc\": \"TKT B\",\n                        \"mktt_expires\": \"2024-05-31\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"5effb110-e276-4edf-b2ad-d5396b315d68"},{"name":"fetchUpdatedContacts","event":[{"listen":"prerequest","script":{"id":"f9c55502-f7f4-489a-a51e-d90d25f51915","exec":["pm.variables.set(\"method\",\"fetchUpdatedContacts\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"1cef3850-f2d4-4c1c-a9cd-75a7c575591d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"2024-08-01\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"ea8efe17-92ad-4a8e-89c7-69e1f36350b3","name":"fetchUpdatedContacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"2024-08-01\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 13:51:05 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUpdatedContacts\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 1632,\n                \"mkc_firstname\": \"Abi\",\n                \"mkc_surname\": \"Jones\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 449,\n                \"pjc_name\": \"McLaren Construction LTD\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 215,\n                \"mkc_sytt_desc_position\": \"Site Manager\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07897 547453\",\n                \"mkc_email\": \"abi@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"off\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": 4433,\n                \"mkc_created\": \"2019-06-06 12:19:37\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-08-11 12:05:46\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 2184,\n                \"mkc_firstname\": \"Adam\",\n                \"mkc_surname\": \"Smithey\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 13509,\n                \"pjc_name\": \"Prospect Aa04\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 393,\n                \"mkc_sytt_desc_position\": \"Assistant Engineer\",\n                \"mkc_phone\": \"01895 111 222\",\n                \"mkc_mobile\": \"07777 111 333\",\n                \"mkc_email\": \"adam.smithey@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2023-12-22 09:34:32\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-03 19:25:53\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 1767,\n                \"mkc_firstname\": \"David\",\n                \"mkc_surname\": \"Smith\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 763,\n                \"pjc_name\": \"EXPANDED LTD STH CIVILS\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 368,\n                \"mkc_sytt_desc_position\": \"Assistant Estimator\",\n                \"mkc_phone\": \"222222222\",\n                \"mkc_mobile\": \"\",\n                \"mkc_email\": \"dave.smith@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"off\",\n                \"mkc_referee\": \"on\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-03-28 14:43:59\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-08-01 18:42:08\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 1076,\n                \"mkc_firstname\": \"Adam\",\n                \"mkc_surname\": \"Melpous\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 463,\n                \"pjc_name\": \"Keepmoat\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 215,\n                \"mkc_sytt_desc_position\": \"Site Manager\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 333333\",\n                \"mkc_email\": \"adam.melpous@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"off\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2018-03-22 09:46:57\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-08-01 18:52:11\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 1805,\n                \"mkc_firstname\": \"Steve\",\n                \"mkc_surname\": \"Curd\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 309,\n                \"mkc_sytt_desc_position\": \"Administration Manager\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 555666\",\n                \"mkc_email\": \"steve@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"off\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2022-03-24 09:53:01\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-08-02 15:12:56\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 1305,\n                \"mkc_firstname\": \"Tom\",\n                \"mkc_surname\": \"O'Connor\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 428,\n                \"pjc_name\": \"C Field Construction LTD\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 215,\n                \"mkc_sytt_desc_position\": \"Site Manager\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07881653317\",\n                \"mkc_email\": \".\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"off\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2018-07-25 11:43:40\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-08-02 15:44:21\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"ssssssssssss\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 1804,\n                \"mkc_firstname\": \"Abraham\",\n                \"mkc_surname\": \"Keane\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 281,\n                \"pjc_name\": \"Hill Partnerships LTD\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 215,\n                \"mkc_sytt_desc_position\": \"Site Manager\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"0777 123456\",\n                \"mkc_email\": \"abraham@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"off\",\n                \"mkc_referee\": \"on\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2021-12-01 15:23:47\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-08-03 18:03:44\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 9,\n                        \"mkcy_desc\": \"COSS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    }\n                ],\n                \"tickets\": []\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 2287,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Kruger\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 469,\n                \"mkc_sytt_desc_position\": \"Architect\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07941165803\",\n                \"mkc_email\": \"freddy.kruger@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"off\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-06-30 17:44:27\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-04 11:23:43\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 2294,\n                \"mkc_firstname\": \"Freddy\",\n                \"mkc_surname\": \"Krugersonx\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 1209,\n                \"pjc_name\": \"Client 701\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": null,\n                \"mkc_sytt_desc_position\": \"\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07941165803\",\n                \"mkc_email\": \"freddy.krugerB@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"off\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-08-05 10:13:16\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-05 10:13:16\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"YYYYYYY\",\n                    \"OtherDetails_13_ADate\": \"2024-01-01\",\n                    \"OtherDetails_146_SomeTextbbb\": \"ZZZZZZZZ\",\n                    \"OtherDetails_147_AnInteger\": \"123\",\n                    \"OtherDetails_2078_Target?\": \"on\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 2,\n                        \"mkcy_desc\": \"COMP A\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-05-01\",\n                        \"mkcyd_valid_to\": \"2024-05-31\"\n                    },\n                    {\n                        \"mkcy_id\": 9,\n                        \"mkcy_desc\": \"COSS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    }\n                ],\n                \"tickets\": []\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 1807,\n                \"mkc_firstname\": \"Joe\",\n                \"mkc_surname\": \"Bloggx\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 377,\n                \"mkc_sytt_desc_position\": \"Assistant Design Manager\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777 111222\",\n                \"mkc_email\": \"joe.bloggs@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"on\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2022-03-25 14:12:50\",\n                \"mkc_syu_id_createdby\": null,\n                \"mkc_syu_fullname_createdby\": null,\n                \"mkc_updated\": \"2024-08-12 15:13:42\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [\n                    {\n                        \"mkcy_id\": 2,\n                        \"mkcy_desc\": \"COMP A\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    },\n                    {\n                        \"mkcy_id\": 3,\n                        \"mkcy_desc\": \"COMP B\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 4,\n                        \"mkcy_desc\": \"COMP C\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 5,\n                        \"mkcy_desc\": \"COMP D\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"2024-06-30\"\n                    },\n                    {\n                        \"mkcy_id\": 8,\n                        \"mkcy_desc\": \"COMP F\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"0000-00-00\",\n                        \"mkcyd_valid_to\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkcy_id\": 10,\n                        \"mkcy_desc\": \"PTS\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    },\n                    {\n                        \"mkcy_id\": 13,\n                        \"mkcy_desc\": \"TESTAA\",\n                        \"mkcyd_status\": \"Active\",\n                        \"mkcyd_valid_from\": \"2024-01-01\",\n                        \"mkcyd_valid_to\": \"2024-12-31\"\n                    }\n                ],\n                \"tickets\": [\n                    {\n                        \"mkt_id\": 6,\n                        \"mkt_desc\": \"TKT A\",\n                        \"mktt_expires\": \"2024-05-01\"\n                    },\n                    {\n                        \"mkt_id\": 5,\n                        \"mkt_desc\": \"TKT B\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 4,\n                        \"mkt_desc\": \"TKT C\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 7,\n                        \"mkt_desc\": \"TKT D\",\n                        \"mktt_expires\": \"0000-00-00\"\n                    },\n                    {\n                        \"mkt_id\": 1,\n                        \"mkt_desc\": \"TKT F\",\n                        \"mktt_expires\": \"2024-06-26\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"mkc_id\": 2298,\n                \"mkc_firstname\": \"bbbbbbb\",\n                \"mkc_surname\": \"ccccccc\",\n                \"pjb_id\": 0,\n                \"pjb_name\": \"\",\n                \"pjc_id\": 305,\n                \"pjc_name\": \"Wates Construction LTD\",\n                \"mkc_payrollnumber\": \"\",\n                \"mkc_sytt_id_position\": 0,\n                \"mkc_sytt_desc_position\": \"\",\n                \"mkc_phone\": \"\",\n                \"mkc_mobile\": \"07777111222\",\n                \"mkc_email\": \"bbb@bbc.co.uk\",\n                \"mkc_linkedin\": \"\",\n                \"mkc_salescontact\": \"on\",\n                \"mkc_candidate\": \"off\",\n                \"mkc_referee\": \"off\",\n                \"mkc_active\": \"on\",\n                \"rdb_id\": null,\n                \"mkc_created\": \"2024-08-13 14:48:33\",\n                \"mkc_syu_id_createdby\": 1,\n                \"mkc_syu_fullname_createdby\": \"Steve Curd\",\n                \"mkc_updated\": \"2024-08-13 14:48:33\",\n                \"mkc_syu_id_revby\": 1,\n                \"mkc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ContactDetails_224_Sometext\": \"aaaaaaaaaaaaaaaaa\",\n                    \"OtherDetails_13_ADate\": \"\",\n                    \"OtherDetails_146_SomeTextbbb\": \"\",\n                    \"OtherDetails_147_AnInteger\": \"\",\n                    \"OtherDetails_2078_Target?\": \"\"\n                },\n                \"duties\": [],\n                \"tickets\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"1cef3850-f2d4-4c1c-a9cd-75a7c575591d"},{"name":"fetchContactNotes","id":"3011b13c-cdc2-405b-9ba3-e906d11417b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"localhostthereforenotrequired\",\r\n     \"method\"      : \"fetchContactNotes\",\r\n     \"mkc_id\"      : 2154}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"868813b4-2b60-4118-b393-cfbde72b3aa3","name":"fetchContactNotes","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"localhostthereforenotrequired\",\r\n     \"method\"      : \"fetchContactNotes\",\r\n     \"mkc_id\"      : 2154}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 16:09:11 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1873"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"fetchContactNotes\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"mkn_id\": 474,\n                \"mkc_id\": 2154,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Customer changed from HSS PROSERVICE LTD H160 to Keepmoat\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-03-15 10:52:17\",\n                \"mkn_updated\": \"2024-03-15 10:52:17\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 481,\n                \"mkc_id\": 2154,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Position changed from 4D Visualization Manager to Unknown\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-03-15 12:18:22\",\n                \"mkn_updated\": \"2024-03-15 12:18:22\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 482,\n                \"mkc_id\": 2154,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Position changed from Unknown to Architect\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-03-15 12:18:33\",\n                \"mkn_updated\": \"2024-03-15 12:18:33\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 502,\n                \"mkc_id\": 2154,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Entertainment: Breakfast\\nDate: 29-Mar-24 Time: 12:00\\naaaaaaaaaaaa\",\n                \"mkn_sytt_id_notetype\": 4,\n                \"mkn_notetype_desc\": \"Entertainment\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-03-29 17:52:07\",\n                \"mkn_updated\": \"2024-03-29 17:52:07\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 518,\n                \"mkc_id\": 2154,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"a new note\",\n                \"mkn_sytt_id_notetype\": 6,\n                \"mkn_notetype_desc\": \"Phone Call from Contact\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-24 19:34:17\",\n                \"mkn_updated\": \"2024-05-24 19:34:17\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 543,\n                \"mkc_id\": 2154,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from Keepmoat to No Client\\nCandidate changed from permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-06-07 11:18:39\",\n                \"mkn_updated\": \"2024-06-07 11:18:39\",\n                \"rdb_id\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"3011b13c-cdc2-405b-9ba3-e906d11417b6"},{"name":"fetchUpdatedContactNotes","id":"9ad0be55-a94d-4de4-8327-229b300f7c81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"localhostthereforenotrequired\",\r\n     \"method\"      : \"fetchUpdatedContactNotes\",\r\n     \"mkc_id\"      : 2154,\r\n     \"updatesSince\" : \"2021-01-01\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"ee0bdc2e-1507-42e1-bfb3-16696bca87c9","name":"fetchUpdatedContactNotes","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"localhostthereforenotrequired\",\r\n     \"method\"      : \"fetchUpdatedContactNotes\",\r\n     \"mkc_id\"      : 2154,\r\n     \"updatesSince\" : \"2021-01-01\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Jun 2024 16:09:30 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123123\",\n            \"method\": \"fetchUpdatedContactNotes\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"mkn_id\": 517,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"This a note number 1 against Tom Jones\",\n                \"mkn_sytt_id_notetype\": 301,\n                \"mkn_notetype_desc\": \"General\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-24 19:32:39\",\n                \"mkn_updated\": \"2024-05-24 19:32:39\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 518,\n                \"mkc_id\": 2154,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"a new note\",\n                \"mkn_sytt_id_notetype\": 6,\n                \"mkn_notetype_desc\": \"Phone Call from Contact\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-24 19:34:17\",\n                \"mkn_updated\": \"2024-05-24 19:34:17\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 519,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from BAM Construction LTD to No Client\\nPosition changed from Architect to Unknown\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-25 15:53:37\",\n                \"mkn_updated\": \"2024-05-25 15:53:37\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 520,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Candidate changed from permanent to freelance and permanent\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-25 16:13:30\",\n                \"mkn_updated\": \"2024-05-25 16:13:30\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 521,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from No Client to 0000011122Xyz1\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-25 19:25:32\",\n                \"mkn_updated\": \"2024-05-25 19:25:32\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 522,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Position changed from Unknown to Architect\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-25 19:29:28\",\n                \"mkn_updated\": \"2024-05-25 19:29:28\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 523,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Position changed from Architect to M & E Estimator\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-25 19:32:52\",\n                \"mkn_updated\": \"2024-05-25 19:32:52\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 524,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Candidate changed from freelance and permanent to permanent\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-25 19:38:10\",\n                \"mkn_updated\": \"2024-05-25 19:38:10\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 525,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Candidate changed from permanent to freelance and permanent\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-25 19:40:57\",\n                \"mkn_updated\": \"2024-05-25 19:40:57\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 526,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from Volkerfitzpatrick LTD to No Client\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-27 11:50:29\",\n                \"mkn_updated\": \"2024-05-27 11:50:29\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 527,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from No Client to Volkerfitzpatrick LTD\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-27 11:51:22\",\n                \"mkn_updated\": \"2024-05-27 11:51:22\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 528,\n                \"mkc_id\": 2249,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Candidate changed from freelance to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-27 12:07:31\",\n                \"mkn_updated\": \"2024-05-27 12:07:31\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 529,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Candidate changed from  to freelance\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-27 12:17:31\",\n                \"mkn_updated\": \"2024-05-27 12:17:31\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 530,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from Volkerfitzpatrick LTD to No Client\\nCandidate changed from freelance to permanent\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-28 11:38:53\",\n                \"mkn_updated\": \"2024-05-28 11:38:53\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 531,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from Volkerfitzpatrick LTD to No Client\\nCandidate changed from permanent to freelance and permanent\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-28 11:42:32\",\n                \"mkn_updated\": \"2024-05-28 11:42:32\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 532,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from Volkerfitzpatrick LTD to No Client\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-28 11:46:11\",\n                \"mkn_updated\": \"2024-05-28 11:46:11\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 533,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from Volkerfitzpatrick LTD to No Client\",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-28 11:54:57\",\n                \"mkn_updated\": \"2024-05-28 11:54:57\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 534,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Candidate changed from freelance and permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-28 12:33:34\",\n                \"mkn_updated\": \"2024-05-28 12:33:34\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 535,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Candidate changed from freelance and permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-28 14:36:21\",\n                \"mkn_updated\": \"2024-05-28 14:36:21\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 536,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Candidate changed from freelance and permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-28 14:36:37\",\n                \"mkn_updated\": \"2024-05-28 14:36:37\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 537,\n                \"mkc_id\": 2251,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Candidate changed from freelance and permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-05-30 08:57:37\",\n                \"mkn_updated\": \"2024-05-30 08:57:37\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 538,\n                \"mkc_id\": 1751,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from Concept Building Services STH LTD to No Client\\nCandidate changed from freelance and permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-06-02 10:55:59\",\n                \"mkn_updated\": \"2024-06-02 10:55:59\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 539,\n                \"mkc_id\": 1768,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from A&B Roofing to No Client\\nCandidate changed from permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-06-06 13:46:27\",\n                \"mkn_updated\": \"2024-06-06 13:46:27\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 540,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from 0000011122Xyz1aa to No Client\\nCandidate changed from freelance and permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-06-07 11:16:18\",\n                \"mkn_updated\": \"2024-06-07 11:16:18\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 541,\n                \"mkc_id\": 2245,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from 0000011122Xyz1aa to No Client\\nCandidate changed from freelance and permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-06-07 11:16:23\",\n                \"mkn_updated\": \"2024-06-07 11:16:23\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 542,\n                \"mkc_id\": 2249,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from BAM Construction LTD to No Client\\nCandidate changed from freelance to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-06-07 11:17:33\",\n                \"mkn_updated\": \"2024-06-07 11:17:33\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 543,\n                \"mkc_id\": 2154,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from Keepmoat to No Client\\nCandidate changed from permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-06-07 11:18:39\",\n                \"mkn_updated\": \"2024-06-07 11:18:39\",\n                \"rdb_id\": null\n            },\n            {\n                \"mkn_id\": 544,\n                \"mkc_id\": 1768,\n                \"pjs_id\": 0,\n                \"pjo_id\": 0,\n                \"mkn_text\": \"Client changed from A&B Roofing to No Client\\nCandidate changed from permanent to \",\n                \"mkn_sytt_id_notetype\": 0,\n                \"mkn_notetype_desc\": \"\",\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"mkn_created\": \"2024-06-07 11:19:04\",\n                \"mkn_updated\": \"2024-06-07 11:19:04\",\n                \"rdb_id\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"9ad0be55-a94d-4de4-8327-229b300f7c81"},{"name":"addContact","event":[{"listen":"prerequest","script":{"id":"beada461-b7c5-4f53-a3bf-33b139ddce37","exec":["pm.variables.set(\"method\",\"addContact\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"213499b1-fa34-4ee3-81df-3d24a478380e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"mkc_firstname\":\"Doris\",\r\n        \"mkc_surname\":\"Krugerson\",\r\n        \"mkc_payrollnumber\": \"\",\r\n        \"pjc_id\":\"1160\",\r\n        \"pjo_id\":487,\r\n        \"pjg_id\":null,\r\n        \"mkc_mobile\":\"07941165803\",\r\n        \"mkc_email\":\"\",\r\n        \"rdb_id\":null,\r\n        \"custom_fields\": {\r\n          \"13\": \"2024-01-01\",\r\n          \"146\": \"BBC\",\r\n          \"147\": \"123\",\r\n          \"2078\": \"on\"\r\n        },  \r\n        \"duties\": [\r\n          {\r\n           \"mkcy_id\": 2,\r\n           \"mkcyd_status\": \"Active\",\r\n           \"mkcyd_valid_from\": \"2024-05-01\",\r\n           \"mkcyd_valid_to\": \"2024-05-31\"\r\n          },\r\n          {\r\n           \"mkcy_id\": 9,\r\n           \"mkcyd_status\": \"Active\",\r\n           \"mkcyd_valid_from\": \"\",\r\n           \"mkcyd_valid_to\": \"\"\r\n          },\r\n          {\r\n           \"mkcy_id\": 10,\r\n           \"mkcyd_status\": \"Active\",\r\n           \"mkcyd_valid_from\": \"\",\r\n           \"mkcyd_valid_to\": \"\"\r\n          }\r\n        ],\r\n        \"tickets\": [\r\n          {\r\n           \"mkt_id\": 9,\r\n           \"mktt_expires\": \"\"\r\n          },\r\n          {\r\n           \"mkt_id\": 5,\r\n           \"mktt_expires\": \"2024-05-31\"\r\n          }\r\n        ],\r\n        \"documents\": [\r\n            {\r\n             \"filename\": \"thisisacontactdocument.docx\",\r\n             \"documentname\": \"THISISACONTACTDOCUMENT\",\r\n             \"contents\": \"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\"\r\n            },\r\n            {\r\n             \"filename\": \"test.txt\",\r\n             \"documentname\": \"\",\r\n             \"contents\": \"VGhpcyBpcyBhIGNsaWVudCB0ZXh0IGZpbGU=\"\r\n            }\r\n        ]\r\n\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"e6fcece4-e415-4b8c-912a-0eabdcffc6cf","name":"addContact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"mkc_firstname\":\"Freddy\",\r\n        \"mkc_surname\":\"Krugersonx\",\r\n        \"pjc_id\":\"1209\",\r\n        \"pjo_id\":null,\r\n        \"mkc_mobile\":\"07941165803\",\r\n        \"mkc_email\":\"freddy.krugerB@bbc.co.uk\",\r\n        \"rdb_id\":null,\r\n        \"custom_fields\": {\r\n          \"224\": \"YYYYYYY\",\r\n          \"13\": \"2024-01-01\",\r\n          \"146\": \"ZZZZZZZZ\",\r\n          \"147\": \"123\",\r\n          \"2078\": \"on\"\r\n        },  \r\n        \"duties\": [\r\n          {\r\n           \"mkcy_id\": 2,\r\n           \"mkcyd_status\": \"Active\",\r\n           \"mkcyd_valid_from\": \"2024-05-01\",\r\n           \"mkcyd_valid_to\": \"2024-05-31\"\r\n          },\r\n          {\r\n           \"mkcy_id\": 9,\r\n           \"mkcyd_status\": \"Active\",\r\n           \"mkcyd_valid_from\": \"\",\r\n           \"mkcyd_valid_to\": \"\"\r\n          },\r\n          {\r\n           \"mkcy_id\": 10,\r\n           \"mkcyd_status\": \"Active\",\r\n           \"mkcyd_valid_from\": \"\",\r\n           \"mkcyd_valid_to\": \"\"\r\n          }\r\n        ],\r\n        \"tickets\": [\r\n          {\r\n           \"mkt_id\": 9,\r\n           \"mktt_expires\": \"\"\r\n          },\r\n          {\r\n           \"mkt_id\": 5,\r\n           \"mktt_expires\": \"2024-05-31\"\r\n          }\r\n        ],\r\n        \"documents\": [\r\n            {\r\n             \"filename\": \"thisisacontactdocument.docx\",\r\n             \"documentname\": \"THISISACONTACTDOCUMENT\",\r\n             \"contents\": \"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\"\r\n            },\r\n            {\r\n             \"filename\": \"test.txt\",\r\n             \"documentname\": \"\",\r\n             \"contents\": \"VGhpcyBpcyBhIGNsaWVudCB0ZXh0IGZpbGU=\"\r\n            }\r\n        ]\r\n\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 16 Aug 2024 08:50:14 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"91"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"addContact\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            \"2299\"\n        ]\n    }\n}"}],"_postman_id":"213499b1-fa34-4ee3-81df-3d24a478380e"},{"name":"updateContact","event":[{"listen":"prerequest","script":{"id":"22bff230-0f73-4bc4-8c76-b0b561293aba","exec":["pm.variables.set(\"method\",\"updateContact\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"cc8ac739-86bb-45e8-aa1b-35761ef8fc55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"mkc_id\":\"2205\",\r\n        \"custom_fields\": {\r\n          \"224\": \"YYYYYYYZZZZZZ\",\r\n          \"13\": \"2024-01-01\",\r\n          \"146\": \"ZZZZZZZZAAA\",\r\n          \"147\": \"124\",\r\n          \"2078\": \"off\"\r\n        },\r\n        \"documents\": [\r\n            {\r\n             \"filename\": \"thisisacontactdocument.docx\",\r\n             \"documentname\": \"THISISACONTACTDOCUMENT\",\r\n             \"contents\": \"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\"\r\n            },\r\n            {\r\n             \"filename\": \"test.txt\",\r\n             \"documentname\": \"\",\r\n             \"contents\": \"VGhpcyBpcyBhIGNsaWVudCB0ZXh0IGZpbGU=\"\r\n            }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"736184ea-d7c9-49aa-9351-411c746138fb","name":"updateContact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"mkc_id\":\"2205\",\r\n        \"mkc_surname\":\"Krugerx\",\r\n        \"custom_fields\": {\r\n          \"224\": \"YYYYYYY\",\r\n          \"13\": \"2024-01-01\",\r\n          \"146\": \"ZZZZZZZZAAA\",\r\n          \"147\": \"124\",\r\n          \"2078\": \"off\"\r\n        },\r\n        \"documents\": [\r\n            {\r\n             \"filename\": \"thisisacontactdocument.docx\",\r\n             \"documentname\": \"THISISACONTACTDOCUMENT\",\r\n             \"contents\": \"UEsDBBQABgAIAAAAIQDfpNJsWgEAACAFAAATAAgCW0NvbnRlbnRfVHlwZXNdLnhtbCCiBAIooAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0lMtuwjAQRfeV+g+Rt1Vi6KKqKgKLPpYtUukHGHsCVv2Sx7z+vhMCUVUBkQpsIiUz994zVsaD0dqabAkRtXcl6xc9loGTXmk3K9nX5C1/ZBkm4ZQw3kHJNoBsNLy9GUw2ATAjtcOSzVMKT5yjnIMVWPgAjiqVj1Ykeo0zHoT8FjPg973eA5feJXApT7UHGw5eoBILk7LXNX1uSCIYZNlz01hnlUyEYLQUiep86dSflHyXUJBy24NzHfCOGhg/mFBXjgfsdB90NFEryMYipndhqYuvfFRcebmwpCxO2xzg9FWlJbT62i1ELwGRztyaoq1Yod2e/ygHpo0BvDxF49sdDymR4BoAO+dOhBVMP69G8cu8E6Si3ImYGrg8RmvdCZFoA6F59s/m2NqciqTOcfQBaaPjP8ber2ytzmngADHp039dm0jWZ88H9W2gQB3I5tv7bfgDAAD//wMAUEsDBBQABgAIAAAAIQAekRq37wAAAE4CAAALAAgCX3JlbHMvLnJlbHMgogQCKKAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArJLBasMwDEDvg/2D0b1R2sEYo04vY9DbGNkHCFtJTBPb2GrX/v082NgCXelhR8vS05PQenOcRnXglF3wGpZVDYq9Cdb5XsNb+7x4AJWFvKUxeNZw4gyb5vZm/cojSSnKg4tZFYrPGgaR+IiYzcAT5SpE9uWnC2kiKc/UYySzo55xVdf3mH4zoJkx1dZqSFt7B6o9Rb6GHbrOGX4KZj+xlzMtkI/C3rJdxFTqk7gyjWop9SwabDAvJZyRYqwKGvC80ep6o7+nxYmFLAmhCYkv+3xmXBJa/ueK5hk/Nu8hWbRf4W8bnF1B8wEAAP//AwBQSwMEFAAGAAgAAAAhADwtmHQiAwAA1gsAABEAAAB3b3JkL2RvY3VtZW50LnhtbKSWW2+bMBTH3yftOyDeW3NJCEFNqrXppj5MqtbuAzjGCVYxRrbJZZ9+x9xbtopQCQG2+f98fI7PwTe3J55aByoVE9nKdq8d26IZETHL9iv798v3q9C2lMZZjFOR0ZV9psq+XX/9cnOMYkEKTjNtASJT0TEnKzvROo8QUiShHKtrzogUSuz0NREcid2OEYqOQsbIc1ynfMulIFQpmO8eZwes7BpHTuNoscRHEBvgDJEES01PHcO9GDJHSxQOQd4EEKzQc4co/2JUgIxVA9BsEgisGpDm00j/WFwwjeQNSYtpJH9ICqeRBtuJDze4yGkGgzshOdbQlHvEsXwt8isA51izLUuZPgPTCRoMZtnrBItA1RK4H19MWCAuYpr6cUMRK7uQWVTrr1q9MT2q9PWjVdB03LQw3RLRk06VbrRyjO8q+aYuLKXXkKQp+FFkKmF5Wx34VBoMJg3k8JEDDjxtvjvm7shU+19p21Rh6IBjzK9jx9PK8o+JrjMimgbRKsaY8HbOxhIOO7ibeJJres51RxafBuANAAGhI38WDSOsGYh02W04bGRaNZwqKobDOse6I2vge2N6gLi4COH5jR3mYeQ9lop1nFyGa2KEjBZrnGDVJo0h0ssWOG9xZ97zd77/XFL9kKLIOxr7HO2xK69Hc9C5gFUnZ79gqM8Z85zgHKouJ9HjPhMSb1OwCFLNgmyxygiYO2w68yhf6ansN7E2L3Fhmaplr+GcthXx2TxzGJhFOZb4Ebb5fLFZenfhvV32wl9Om15/4/qBF3jQG8GZMP61sh3n7sENv83arg3d4SLVZuThzguDZTmLNDe9fkmYsuDCFrlBpsPcyzHZR7rOzFksSqFew+mSwTaj7wXlqHFppHJMwAO5pIrKA7XXVnP4fKOBe25EihL99Ga+egmlG/bPf2AI6p/rLs1f+RhBerhB6Ic2qj74iY1YCyjT7mzmlCtn+0R3za3QWvCundJdbzShOKbww1s4oWnuhNC95r7QZdOppiMiVdBbL9F8U3bDAn9IE+AoZRl9YpqAlX5QilCzxPK1ii/qDuTrvwAAAP//AwBQSwMEFAAGAAgAAAAhANZks1H0AAAAMQMAABwACAF3b3JkL19yZWxzL2RvY3VtZW50LnhtbC5yZWxzIKIEASigAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArJLLasMwEEX3hf6DmH0tO31QQuRsSiHb1v0ARR4/qCwJzfThv69ISevQYLrwcq6Yc8+ANtvPwYp3jNR7p6DIchDojK971yp4qR6v7kEQa1dr6x0qGJFgW15ebJ7Qak5L1PWBRKI4UtAxh7WUZDocNGU+oEsvjY+D5jTGVgZtXnWLcpXndzJOGVCeMMWuVhB39TWIagz4H7Zvmt7ggzdvAzo+UyE/cP+MzOk4SlgdW2QFkzBLRJDnRVZLitAfi2Myp1AsqsCjxanAYZ6rv12yntMu/rYfxu+wmHO4WdKh8Y4rvbcTj5/oKCFPPnr5BQAA//8DAFBLAwQUAAYACAAAACEAZ4D8tM4GAADNIAAAFQAAAHdvcmQvdGhlbWUvdGhlbWUxLnhtbOxZzYsbNxS/F/o/iLk7Ho+/l3iDP7NNdpMl66TkKNvyjNaa0SDJuzEhUJJTL4VCWnop9NZDKQ000NBL/5iFhDb9IyppbM/I1nTzsaGh7BrWI+n3nn567+npWXP12oOQgBPEOKZRyyldcR2AojGd4MhvOXeHg0LDAVzAaAIJjVDLWSDuXNv99JOrcEcEKERAykd8B7acQIh4p1jkY9kN+RUao0iOTSkLoZBN5hcnDJ5KvSEpeq5bK4YQRw6IYCjV3p5O8RiBoVLp7K6U94n8FwmuOsaEHSnVyJDQ2MmspL74gncJAyeQtBw5z4SeDtED4QACuZADLcfVf05x92pxLUREjmxGbqD/lnJLgcnM03LMH60F3b7XqJTW+jWAiG1cv6E+a30aAMdjudKESxZbqtbchrfEZkDJo0V3s14qm/iM/vK2/mat41UMvAYlj5XtNQ6a/V7VwGtQ8ljdwrddr9MsG3gNSh5rW/hKv133+gZegwKCo9k2ulZvNGpL9BoypWTPCm/Wam69t4SnqGImuhL5SOTFWgiPKRtIgHYuFDgCYhGjKRxLXDsWlIMe5jGBCwfEMKJcdrteqSQDr+J664+2ONxBMCOddI35VpfiA/iY4Vi0nBtSq5OBvHzx4uzx87PHv509eXL2+Bewj/1AWOT2YORn5V7/+PXf338B/vr1h9dPv7HjeRb/6ucvX/3+x7+pFwatb5+9ev7s5Xdf/fnTUwu8zeAoCx/iEHFwC52COzSUC7RMgEbs7SSGAcRZiXbkcxhBJWNB90VgoG8tIIEWXAeZdrzHZLqwAa/Pjw3CRwGbC2wB3gxCA3hAKelQZl3TTTVX1grzyLdPzuZZ3B0IT2xzdze83J/HMu6xTWU3QAbNQyJdDn0UIQHUGJ0hZBG7j7Fh1wM8ZpTTqQD3MehAbDXJEI+MaEqF9nAo/bKwEZT+NmxzcA90KLGp76ETEyn3BiQ2lYgYZrwO5wKGVsYwJFnkPhSBjeTRgo0Ng3MhPe0jQkF/gji3ydxmC4PuTSjzltXtB2QRmkgm8MyG3IeUZpE9OusGMIytnHEUZLGf8ZkMUQgOqbCSoOYOUW3pBxjluvseRoa7z9/bd2UasgeIGpkz25ZA1NyPCzKFyKa8zUIjxbYZtkZHZ+4bob2PEIGncIIQuPuZDU9jw+Yp6RuBzCp7yGabG9CMVdWOEJe1kipuLI7F3AjZI+TTHD4Hi43Es4BRCFme5lszM2T6IyY3oy1eyXhmpFLM1Ka1k7jNQ2N9uVoPA2iElWpze7wumOG/N9ljUub4HWTQW8vIxP7GthlCYkyQBswQYrBvS7dSxHB/KqK2kxabW+Wm5qZN3VDcKHpCHJ1TAf03lY9F4mJqHjvwfaqdvISyWePk4TYrmy5lE/zxFzY9OI8OkTxLLNDLuuayrvnf1zV5+/mymrmsZi6rGbvIB6hm0gJGXwOtLnu0ljD35meKCTkSC4L2uS59uNz7k4Hs1A0ttL5oigP5uJzOwPkM6mfAqPgci+AogLGcpqRn8PlStc9BTLksn3S3VbcaIPPwgE6W93iqztJ3m1IAirTfra77Zakmkt5aPb0IXavXLV9ftq4IKNm3IZGZzCRRtpCorzrPIaFXdiEsmhYWDaU+l4X+WnpFHk4AqmvxaiVhJMNNhvRE+SmRX3n3wj2dZ0xz2Z5leU3F9WI8bZDIhJtJIhOGgTw8Nrsv2NfN1KUGPWWKbRr1xofwtUoiG7mBRGYLnMo9V65KNWMYt5yp/NkkH8NY6uMqU0HiRy1nLJaGfpfMEjMuepAHCUwPJesPsUAMEBzKWM+6gUQpt5JXV2v8SMk13Y/Pcvor62Q0naKxyOlJm3IsUWIdfU+watC5JH0UTE7BiMzZHSgNVa2XlAEnmIu1NSeYZYI7teJGulpuReMNULpFIYkDuDxRssk8gevnNZ3MOjTTzVWZ7eViRr5y0nufuucLqYFM0sw5QNSpac8fH+6Qz7BK877BKkndm7muucp1eafE+x8IGWrpZAY1xdhCLe01qV1gQZCZbh2aeWfERZ8Gm1GrDohVXalbWy+36ehYRn5PVqtzIrimKn+1MNhdvZZMMoHuXWWXBwLMGW45D91qu9L1qt2C26j2C5VyxS00qu1yoV2tlkv9asntdbxH0igiCEvVZO6B/LFPFst397p/6/19uCq1r4xpWKS6Di5qYf3+vuTlv78HWFrmYc0bNMvNTq3QLLcHhUqv0yg0u7VOoVfr1nuDXrfaaA4eOeBEgyvtcrdS6zcKtVK3W6jUXEW/0SzUK57XrtTbjX6l/Whpa7ny1ffKvJrX7j8AAAD//wMAUEsDBBQABgAIAAAAIQAC9lUpTQQAAJIMAAARAAAAd29yZC9zZXR0aW5ncy54bWy0V9tuIjkQfV9p/wH185K+AB3SGjLiOsko7KyGrPbZ3TZgxZeW7YYwq/33LbvbNJmgUZhRXoKpU3WqbB9XkQ8fnznr7IjSVIpREF9FQYeIQmIqNqPg78dFdxh0tEECIyYFGQUHooOPt7//9mGfaWIMuOkOUAid8WIUbI0pszDUxZZwpK9kSQSAa6k4MvBVbUKO1FNVdgvJS2RoThk1hzCJojRoaOQoqJTIGooup4WSWq6NDcnkek0L0nz4CPWWvHXITBYVJ8K4jKEiDGqQQm9pqT0b/1k2ALeeZPejTew48377OHrDdvdS4WPEW8qzAaWSBdEaLogzXyAVbeL+K6Jj7ivI3WzRUUF4HLnVaeWDywiSVwRpQZ4v4xg2HCFEnvJQfBlPeuSh7cHG6c8Vc0KAq4sokp6vw37Y8BMujQ3eXkbn7yi0scigLdJHRVpGctkGB0e6A2/PW7O3KLCGHmiukKrfdyM/XmT3GyEVyhmUAzLsgJI6rjr7Fy7EfrgleXZ2ew52AadzC13nm5S8s89Kogp4etCyoigILQCCl+uVQQaIso1CHFrNKCgYQaJ2wGSNKmYeUb4ysgSnHYK9XCdNfLFFChWGqFWJCng2UymMksz7YfmnNFNoWwpeVRPhmli7WtUNESIE4rC7F01uKTF0rH1WKfr2a7ABLns8OE35fSIJDVxRTB7tqa7MgZEFFL+i38hY4M+VNhQYXav7hQp+VAARNvMX0MHjoSQLgkwFx/ROydxNLBgtl1Qpqe4FBiG8WzK6XhMFCSgIawnyoUru3TnfEYRhbr5T3kqTf8AZnmHvEWT5NJHGSH53KLdw1r92k07v4al8Yfpj7RdfpTRH12g+SYbpTV2pRVskjvrR9fU5pNdLp4veOaR/k8Tz5BwymcfDcf8cMp2naTQ+h8xmg2HavN6XSFt1eNwdz+yE/kv5lX0iHV5HTBHPFUWdpZ3hofXI1dOECo/nBJobOUVWVe7BbrcGNEeMLeCyPOBK4xmmupyRtVuzJVKblrfxUGet0K8+H7lssyPqk5JVWaN7hcpa+t4l7vebSCrMA+Xerqt85aMEtOMTqBL4y065c2qPZ58ZkJJrIQ/ISdL5EtH9NGkky9TKyo0sUVnWqs038ShgdLM1sRWagW8Yfuq5L/kmabDEYUmNuS+osDsD72bR2hJvO/HreVuvtfW9rd/aBt42aG2pt6XWtoU+pRgVT/CA/NLa15IxuSf4rsVfmepD0FtUklk9U0BesjY0Q0Z3dhl5hvFEMDXwC7qkmKNnO62S1IY33gwdZGVe+FrMOpcvGew8b1pG+CLYSfy7WuysKyjIcXXgeTvCrurCGdXQbkqYdkYqj/3hsLifYVnc2xncr+3JILqe9pJFDQ/clDSuI8G9fyXrCdIEN5gPHdSh/44H6XgYx3F3OpvfdPtpdNMdT6J5dzYfD6MkGS+im/l/zSP1/0zc/g8AAP//AwBQSwMEFAAGAAgAAAAhAOlAhWH+DwAAq6YAAA8AAAB3b3JkL3N0eWxlcy54bWzsXW1zm0gS/n5V9x8ofbr7kPWLZNlxrXfLduJL6pKsN3JuP49gZLFGjA5QHO+vv3kDITWD6KGt9aauUhVLQD8zzNNPM90g5sefvy2S4CvP8likF4OjHw4HAU9DEcXp/cXgy93Nq7NBkBcsjVgiUn4xeOL54Oef/v63Hx/P8+Ip4XkgAdL8fBFeDOZFsTw/OMjDOV+w/Aex5KncORPZghXya3Z/sGDZw2r5KhSLJSviaZzExdPB8eHheGBhsi4oYjaLQ/5GhKsFTwttf5DxRCKKNJ/Hy7xEe+yC9iiyaJmJkOe5POlFYvAWLE4rmKMRAFrEYSZyMSt+kCdje6ShpPnRof60SNYAJziAYwAwDvk3HMaZxTiQlnWcOMLhjCucOKrh+HWmBhCtUBDHw7If6o8yr2HlURHNcXAlRwfKlhVszvJ5HZHjTvCkgntaqPFehOfv71ORsWkikaQHBdIJAg2s/pdjqf7oj/yb3q5OQX2QJ/aTVFckwjd8xlZJkauv2W1mv9pv+s+NSIs8eDxneRjHd7Kbsq1FLJt9d5nm8UDu4SwvLvOYNe6cqw+Ne8K8qG2+iqN4cKBafOBZKnd/ZcnF4Nhsyv+oNlRbrlWnNrYlLL0vt/H01b+u6p3Tm75M1KapbOpiwLJXk0tteDQ6T+J7VqwyGWrUN41gIlIWXcvz59+KFUvUwQd2YMzf2nAtt7/pXi5ZGOtOsVnBZeA5Gh+qHiSxinPHJ6/LL59XikK2KoRtRAOYvxXsAWBMxiMZnSYmSMq9fPZBhA88mhRyx8VAtyU3fnl/m8Uik4HwYvBatyk3TvgifhdHEU9rB6bzOOK/zXn6JefRevuvNzqY2Q2hWKXy8/B0rL0oyaO330K+VKFR7k2Z4vSTMkjU0at43bg2/28JdmRpa7Kfc6auD8HRNoTuPgriWFnktbNtxlxtnbs+CtXQcF8NjfbV0Mm+Ghrvq6HTfTV0tq+GNMxzNhSnkbx86ONhMwB1F45DjWgch9jQOA4toXEcUkHjOJSAxnE4OhrH4cdoHIebInAKEbq8sObsQ4e3t+Puvkb44e6+JPjh7r4C+OHuDvh+uLvjux/u7nDuh7s7evvh7g7WeFwz1QreS5mlRW+VzYQoUlHwQE16e6OxVGLppJkGT130eEZykgQwJrLZC3FvtJDp77s9RIvU/3peqHwxELNgFt+rlKd3x3n6lSdiyQMWRRKPEDDjMilzjIiPT2d8xjOehpzSselAVSYYpKvFlMA3l+yeDIunEfHwlYgkQaFyaJk/z5VIYgKnXrAwE/27JhhZfPgQ5/3HSoEEV6sk4URYn2hcTGP1zw00TP/UQMP0zww0TP/EoMYZ1RBZNKKRsmhEA2bRiMbN+CfVuFk0onGzaETjZtH6j9tdXCQ6xNdnHUfda3fXiVC3OXr3YxLfp7oq2xvJ1kyDW5ax+4wt54GqajfD1s8Z286ViJ6CO4prWoVENa/XLqJq2XG66j+gG2hU4qrwiORV4REJrMLrL7GPcpqsJmjvaPKZyWpaNIpWI3US7YQlKzOh7a82VvT3sLUAbuIsJ5NBMyyBB39S01lFJ0XkW/eyf8fWWP1ltR2VSLtnIQl6mYjwgSYMv3ta8kymZQ+9kW5EkohHHtEhTopMGF+rS/5YU9JJ8m8XyznLY50rbUB0v9SXD0gEH9my9wndJixOaXh7+2rB4iSgm0G8u/v4IbgTS5VmqoGhAbwSRSEWZJi2EviP3/j0nzQdvJRJcPpEdLaXROUhDXYdE1xkDJKIiJDkNDNOY5JrqMb7N3+aCpZFNGi3GTfPJBWcCHHCFksz6SDQloyLjzL+EMyGNN5/WBaruhCVqO5IwGplw3w1/Z2H/UPdJxGQVIZ+WRW6/qinutqaDq7/NGEDrv8UQbMpLw/KfwlOdgOu/8luwFGd7HXC8jx23kL1xqM63RKP+nz7J38WTyQim60SugEsAclGsAQkG0KRrBZpTnnGGo/whDUe9fkSuozGIyjJabx/ZXFERoYGo2JCg1HRoMGoONBgpAT0f0KnBtb/MZ0aWP9ndQwY0RSgBkblZ6SXf6K7PDUwKj/TYFR+psGo/EyDUfnZ8E3AZzM5Caa7xNQgqXyuBkl3oUkLvliKjGVPRJBvE37PCAqkBu02EzP1YxWRmoe4CSBVjTohnGwbOCqSf+NTsq4pLMp+EVREWZIIQVRbW19wtOXms2u7zPQvQXp34TZhIZ+LJOKZ45zctjJfnpifZWx3X3ejU9nzQ3w/L4LJvKr212HGhzsty4R9w2x3g01jPi5//NJk9pFH8WpRdhT+mGI87G6sPXrDeLTbeD2T2LA86WgJ2xzvtlzPkjcsTztawjbPOlpqnW5YtunhDcseGh3htM1/qhzP4XynbV5UGTc22+ZIlWWTC562edGGVILLMFR3CyA73TTjtu8mHrc9RkVuFIyc3CiddeWGaBPYZ/41Vld2TNDU7VVPT4C4ryfRnSLnryth6vYbN5y6/6jrvZw4pTkPGnGG3W9cbUQZ9zh2DjduiM5xxw3ROQC5ITpFIqc5KiS5UTrHJjdE5yDlhkBHK3hFwEUraI+LVtDeJ1pBFJ9o1WMW4IboPB1wQ6CFCiHQQu0xU3BDoIQKzL2EClHQQoUQaKFCCLRQ4QQMJ1RojxMqtPcRKkTxESpEQQsVQqCFCiHQQoUQaKFCCLRQPef2TnMvoUIUtFAhBFqoEAItVD1f7CFUaI8TKrT3ESpE8REqREELFUKghQoh0EKFEGihQgi0UCEESqjA3EuoEAUtVAiBFiqEQAvV/NTQX6jQHidUaO8jVIjiI1SIghYqhEALFUKghQoh0EKFEGihQgiUUIG5l1AhClqoEAItVAiBFqq+WdhDqNAeJ1Ro7yNUiOIjVIiCFiqEQAsVQqCFCiHQQoUQaKFCCJRQgbmXUCEKWqgQAi1UCNHmn/YWpesx+yN81dP5xH73W1e2U5/rP+WuQw27Q5W9cmN1/y3ClRAPQeMPD4c63+gGEk+TWOgSteO2eh1XPxKBuvH5y3X7L3zq6D1fumR/C6HvmQLwUVdLUFMZtbl83RIkeaM2T69bglnnqC361i3BZXDUFnS1LsuHUuTlCBi3hZma8ZHDvC1a18zhELfF6JohHOG2yFwzhAPcFo9rhieBCs7b1icdx2lcPV8KENrcsYZw6kZoc0vIVRmOoTC6kuZG6MqeG6ErjW4EFJ9OGDyxbig0w24oP6qhzLBU+wvVjYClGiJ4UQ1g/KmGUN5UQyg/qmFgxFINEbBU+wdnN4IX1QDGn2oI5U01hPKjGl7KsFRDBCzVEAFLdc8LshPGn2oI5U01hPKjGk7usFRDBCzVEAFLNUTwohrA+FMNobyphlB+VIMsGU01RMBSDRGwVEMEL6oBjD/VEMqbagjVRrWuomxQjWK4Zo6bhNUMcRfkmiEuONcMPbKlmrVntlRD8MyWIFcl57hsqU6aG6Ere26ErjS6EVB8OmHwxLqh0Ay7ofyoxmVLTVT7C9WNgKUaly05qcZlS61U47KlVqpx2ZKbaly21EQ1Lltqoto/OLsRvKjGZUutVOOypVaqcdmSm2pcttRENS5baqIaly01Ud3zguyE8acaly21Uo3LltxU47KlJqpx2VIT1bhsqYlqXLbkpBqXLbVSjcuWWqnGZUtuqnHZUhPVuGypiWpcttRENS5bclKNy5ZaqcZlS61U47Klj9IkJngF1GTBsiKge1/cO5bPC9b/5YRf0oznIvnKo4D2VD+gzvLgcWP5K4WtVwuUxxdyzNQb0Gs/V4rMG2AtoD7wfVQtU6WMVU8Cu3qY3aw7bG/Xmha14Y6mKnB7r/gIwK8Xt9ItTJk8q1/UaIDGU/VixIbtyiHK7WUz13OWmb1rVy2PsWJcn8vjeZbHUbn78PDt1fFZ+VyHXbzsgfPlJ9m+3qa+SH54rr+t1zWbqneKyREYmoXN7DJnZ1a1wry16cPXpGrJUmfbaF1kjv3essic2vnWblP7N9aZ27BcrzOnNl9V68yFSuVVv25Gp2PtG/pgHQEuBkzrf71ZPZQiga5uDMJ6WbryZnN9WTqzrbZgnI/zHDudx4YgGuc57uA8a1ma4zZE+czuZdfN2+leZWT4ztxraMmuu5fZ1tO9hk73so970LjX8Dtxr3LIHe61y4n24SrHdua2sUCm3tbTVUZOV7HP99C4yuiFu8pZ3VPKsA89RcuH3lNi8/+16V1fv+npESdOj7DPbdF4xMn34RFaJS8vdvT0AbMEbJMP2CyWxgfGL9wHRnUfcLqAlsVeg8LJa/Vv2yHUqktrd7iL1Wq+l5qvnt5w6vQGW5Gg8YbT78IbygF/zoCwZ/7PnPzbWQkN/2cvlP9djGsR7FX/x6fqXxf+31DMEV87+bejScP/678o/+UQP6fi6RkP5WCz0L6Y3VFHswssVW8I0ssrbfuCYxUmB4+2OLaLR3e/C1XNbemzrva2FgBNQdjpaJ09rZgmhmr54X2qHO1ReUnV0+gbM1By/zVPko/MHC2W7kMTPlNykXuPDvX7OLf2T83SEk77TN+DcAIcbHbGfG33E7PYZGx+HOOst6pCe8Nw619q9R3pjj4crnI5NBN1wHb/Nmqp2720O4OjYB1/tgJaow5cYcx6uDOEuYPS/8umaEpNhdNF6TERpbZO1/Wq9P0z3KdyiWTYFBldDA+JGLZ1UXqG/6wCQJ2tPsVDJFumzudia0TEli1Nvhy29l3AQ7Jiam0uVk6IWLHlwe9HQ+Q8mHqXi4cxEQ+2RPeXUAd9JQNJiSk6uSg5JaLE1sleqDT+dBJM5cdFwhkRCfYq+JfQxTPn+7spMcUYFyWviSixA/pCdbGvMpt5Qcb2WJutTUOMra9ppDVhDUUZm7ChamegQGbumKnimBw6UyxXXz6vlJOxVSHKIU7VEK5YYl/Yb0buBTzbsT4jfdavymF54Fk19uu5dLnlxF5v67Nrs41OlGsGG72krxprruZ2jpeZ1e6fs2YNV2t1bxNU7aBQcgnWKmZbgEKJOV0tzIc4gY9d2Z3PXOLGzkIA90c2Adlv4rtBiYv8vgLddCI35y984vjMlDUr06wpsM2M2UqhSY3UJshjS4Hn1bX+NJs+4vewtFS5K9ftAm22zC1Hh+pfF9ao0+D1UDXS0VclNU7dLOyUyF5Hrtll1V2T9bIc22Olf9Sw3r3Lh+FQDG39DOWQsb7Dpe5PqVfsWVdsm8t1dJfqpO1756qX4W2fNnhbHs5RGjwCdaHc7R17fEzLjkVzaNtcTGWXe3QJcfXm2iLd0CePWF5F+q+5L6qPy6Un2WW5/1CP2KkP0r9UPNHq08PuWRav7qA+c0tKBvbMdv2uQn0zblXT2NlY90bf0DXf9CF9g/+fWgYFftTqun0vBxsi2eGxL073rTFy/WpO1wCuj+gbJctbfagoOTWt2tHKZVBJrtmSZuzAJLJ8/nJrRMtP+U//AwAA//8DAFBLAwQUAAYACAAAACEAvn52Yl4BAADQAwAAFAAAAHdvcmQvd2ViU2V0dGluZ3MueG1snNNRT8IwEADgdxP/w9J36EAhhjBIjMH4YkzUH1DaG2tse0tbHPjrvU7AGV6YL+u1232569r5cmdN9gk+aHQFGw1zloGTqLTbFOz9bTW4Y1mIwilh0EHB9hDYcnF9NW9mDaxfIUb6MmSkuDCzsmBVjPWM8yArsCIMsQZHL0v0VkSa+g23wn9s64FEW4uo19rouOfjPJ+yA+MvUbAstYQHlFsLLrb53IMhEV2odB2OWnOJ1qBXtUcJIVA/1vx4Vmh3Yka3Z5DV0mPAMg6pmUNFLUXpo7yNrPkFJv2A8RkwlbDrZ9wdDE6ZXUerfs705GjVcf5XTAdQ217E+OZYRxpSescKKqqqH3f8RzzliigqEaquCP0anJy4vU37beXsaePQi7UhiU5QRocga+H0pL1MQxvCrl1PLaSAGlvQFcM6aqu/YIX+3mMTwPO0LIzB5uX5kSb8zz1cfAMAAP//AwBQSwMEFAAGAAgAAAAhAAJG+BLzAQAAeAYAABIAAAB3b3JkL2ZvbnRUYWJsZS54bWzck01vnDAQhu+V+h8s37MY9iMbFDZKm6zUSw9V+gO8xixWsI083mX597XNR4j20KXHIoGHd5hH847N49NFVujMDQitMhwvCEZcMZ0Ldczw77f93RYjsFTltNKKZ7jlgJ92X788NmmhlQXk6hWkkmW4tLZOowhYySWFha65cslCG0mtezXHSFLzfqrvmJY1teIgKmHbKCFkg3uMuYWii0Iw/qLZSXJlQ31keOWIWkEpahhozS20Rpu8NppxAOdZVh1PUqFGTLy6AknBjAZd2IUz03cUUK48JiGS1QdgPQ+QXAE2jF/mMbY9I3KVU47I53E2I0fkE86/NTMB5KdZiGQ59OEXXz5hQW7zch5u2KPI11JLSwrllMjnGVyPuFb6eUuW/jgqbeihciR3gpA7BCiA/dPN0i8h5Jegews+cMZ2/c+FmlRR6eqfa6shyKykBrjPnGmVYUJwFL6mUlTtoEIjALpELSwrB/1MjfANdSkQR5c4wYFk2J15QpLtPe6U2JPDteyVZFRIryw/Kyxwwmv8sO+VD07oM+psXdl7E5ID+skb9EtLqoLRmioNPB6N+i3bkCVZk5W7ExetOhs3TcQE7pyJvPqBvO6Dk24i351yv11/u5rIw98n0nFun0jYcPQioK5o+x9tfB/A7g8AAAD//wMAUEsDBBQABgAIAAAAIQAhzWVZbAEAAOsCAAARAAgBZG9jUHJvcHMvY29yZS54bWwgogQBKKAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACckl1vgjAUhu+X7D+Q3mMBjTEEMJmLVzNZosuW3XXtUTuhNO1R5N+vgOLIvNrd+XjO29O3TebnIvdOYKwsVUrCUUA8ULwUUu1S8rZZ+jPiWWRKsLxUkJIaLJlnjw8J1zEvDbyaUoNBCdZzSsrGXKdkj6hjSi3fQ8HsyBHKNbelKRi61OyoZvzAdkCjIJjSApAJhow2gr7uFclFUvBeUh9N3goITiGHAhRaGo5CemMRTGHvDrSdX2QhsdZwF702e/psZQ9WVTWqxi3q9g/px+pl3V7Vl6rxigPJEsFjlJhDltBb6CJ7/PoGjl25T1zMDTAsTbZGOIG3OBrRItdyY/gB6qo0wrrhQeYwAZYbqdE9Yyc9KDg6ZxZX7l23EsRTPTjlb7cZMHCSza/Ixi3Rp8nF4m4zEJ6zJu6MvHbex4vnzZJkURBN/GDmh9NNMIujSRwEn81yg/mbYHFZ4N+KV4HOn+H3zH4AAAD//wMAUEsDBBQABgAIAAAAIQADc237cQEAAMcCAAAQAAgBZG9jUHJvcHMvYXBwLnhtbCCiBAEooAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJxSy07DMBC8I/EPUe7UaQVVhTZGqBXiwEtqWs6WvUksHNuyDaJ/z4a0IYgbPu3Mekcza8PNZ2eyDwxRO1vm81mRZ2ilU9o2Zb6r7i5WeRaTsEoYZ7HMDxjzG35+Bi/BeQxJY8xIwsYyb1Py14xF2WIn4ozaljq1C51IBEPDXF1riRsn3zu0iS2KYsnwM6FVqC78KJgPitcf6b+iysneX9xXB096HCrsvBEJ+VM/aWbKpQ7YyELlkjCV7pAXRI8AXkSDkc+BDQW8uqAivwQ2FLBuRRAy0f744grYBMKt90ZLkWix/FHL4KKrU/b87Tbrx4FNrwAl2KJ8DzodehNTCA/aDjaGgmwF0QTh26O3EcFWCoNrys5rYSIC+yFg7TovLMmxsSK9t7jzldv0aziO/CYnGV91ardeSLKwWE3TThqwJRYV2R8djATc03ME08vTrG1Qne78bfT72w//ks+Xs4LO98JOHMUePwz/AgAA//8DAFBLAQItABQABgAIAAAAIQDfpNJsWgEAACAFAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAhAB6RGrfvAAAATgIAAAsAAAAAAAAAAAAAAAAAkwMAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAhADwtmHQiAwAA1gsAABEAAAAAAAAAAAAAAAAAswYAAHdvcmQvZG9jdW1lbnQueG1sUEsBAi0AFAAGAAgAAAAhANZks1H0AAAAMQMAABwAAAAAAAAAAAAAAAAABAoAAHdvcmQvX3JlbHMvZG9jdW1lbnQueG1sLnJlbHNQSwECLQAUAAYACAAAACEAZ4D8tM4GAADNIAAAFQAAAAAAAAAAAAAAAAA6DAAAd29yZC90aGVtZS90aGVtZTEueG1sUEsBAi0AFAAGAAgAAAAhAAL2VSlNBAAAkgwAABEAAAAAAAAAAAAAAAAAOxMAAHdvcmQvc2V0dGluZ3MueG1sUEsBAi0AFAAGAAgAAAAhAOlAhWH+DwAAq6YAAA8AAAAAAAAAAAAAAAAAtxcAAHdvcmQvc3R5bGVzLnhtbFBLAQItABQABgAIAAAAIQC+fnZiXgEAANADAAAUAAAAAAAAAAAAAAAAAOInAAB3b3JkL3dlYlNldHRpbmdzLnhtbFBLAQItABQABgAIAAAAIQACRvgS8wEAAHgGAAASAAAAAAAAAAAAAAAAAHIpAAB3b3JkL2ZvbnRUYWJsZS54bWxQSwECLQAUAAYACAAAACEAIc1lWWwBAADrAgAAEQAAAAAAAAAAAAAAAACVKwAAZG9jUHJvcHMvY29yZS54bWxQSwECLQAUAAYACAAAACEAA3Nt+3EBAADHAgAAEAAAAAAAAAAAAAAAAAA4LgAAZG9jUHJvcHMvYXBwLnhtbFBLBQYAAAAACwALAMECAADfMAAAAAA=\"\r\n            },\r\n            {\r\n             \"filename\": \"test.txt\",\r\n             \"documentname\": \"\",\r\n             \"contents\": \"VGhpcyBpcyBhIGNsaWVudCB0ZXh0IGZpbGU=\"\r\n            }\r\n        ]\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 16 Aug 2024 08:47:25 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"88"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"updateContact\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": []\n    }\n}"}],"_postman_id":"cc8ac739-86bb-45e8-aa1b-35761ef8fc55"},{"name":"deleteContact","id":"ac3d1c4a-cdde-40a8-8f67-626bb05e1667","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"199beef935b90406146b1ab50c80cc5bf29d1ebf0b052f86477b25453d9857c40d597180d9611c236e91499f34628d8c7d43876b5ac897dbfd0837d76a72d7bc\",\r\n     \"method\"      : \"deleteContact\"},\r\n   \"body\":\r\n     [\r\n       {\"mkc_id\":\"1730\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac3d1c4a-cdde-40a8-8f67-626bb05e1667"}],"id":"a19e4fcd-a8a5-4a96-9a95-f6e0d32b9db9","_postman_id":"a19e4fcd-a8a5-4a96-9a95-f6e0d32b9db9","description":""},{"name":"Communications","item":[{"name":"fetchCommunications","event":[{"listen":"prerequest","script":{"id":"2d619e17-8f88-4d5e-9a6f-0413d4982a3b","exec":["pm.variables.set(\"method\",\"fetchCommunications\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"bbc4e002-cc6b-455e-a5c6-a52082d06d80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"             : \"{{id}}\",\r\n     \"tenant\"         : \"{{tenant}}\",\r\n     \"email\"          : \"{{email}}\",\r\n     \"password\"       : \"{{password}}\",\r\n     \"method\"         : \"{{method}}\",\r\n     \"datalevel\"      : \"verbose\",\r\n     \"offset\"         : 0,\r\n     \"maxrows\"        : 100,     \r\n     \"syms_origin\"    : \"All\",\r\n     \"syms_direction\" : \"All\",\r\n     \"mkc_id\"         : null,\r\n     \"mkc_email\"      : null}\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbc4e002-cc6b-455e-a5c6-a52082d06d80"},{"name":"fetchQueuedCommunications","event":[{"listen":"prerequest","script":{"id":"2d619e17-8f88-4d5e-9a6f-0413d4982a3b","exec":["pm.variables.set(\"method\",\"fetchQueuedCommunications\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7c48adf6-f5a9-4355-9560-5f67b696066d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"             : \"{{id}}\",\r\n     \"tenant\"         : \"{{tenant}}\",\r\n     \"email\"          : \"{{email}}\",\r\n     \"password\"       : \"{{password}}\",\r\n     \"method\"         : \"{{method}}\",\r\n     \"datalevel\"      : \"verbose\",\r\n     \"offset\"         : 0,\r\n     \"maxrows\"        : 100,     \r\n     \"syms_origin\"    : \"All\",\r\n     \"syms_direction\" : \"All\",\r\n     \"mkc_id\"         : null,\r\n     \"mkc_email\"      : null}\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php","description":"<h3 id=\"api-request-description\">API Request Description</h3>\n<p>This endpoint retrieves data based on the provided parameters. It utilizes the HTTP GET method to request information from the server.</p>\n<h4 id=\"request-method\">Request Method</h4>\n<ul>\n<li><strong>GET</strong></li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body is sent in JSON format and contains the following parameters:</p>\n<ul>\n<li><p><strong>sitepad</strong>: An object containing the header information.</p>\n<ul>\n<li><p><strong>header</strong>: An object with the following fields:</p>\n<ul>\n<li><p><strong>id</strong>: (string) Unique identifier for the request.</p>\n</li>\n<li><p><strong>tenant</strong>: (integer) Tenant identifier.</p>\n</li>\n<li><p><strong>email</strong>: (string) User's email address.</p>\n</li>\n<li><p><strong>password</strong>: (string) User's password.</p>\n</li>\n<li><p><strong>method</strong>: (string) Specifies the method of the request.</p>\n</li>\n<li><p><strong>datalevel</strong>: (string) Indicates the level of detail for the data requested. Entries can be \"terse\" or \"verbose\". The default is \"terse\".</p>\n</li>\n<li><p><strong>offset</strong>: (integer) The starting point for data retrieval, typically used for pagination.</p>\n</li>\n<li><p><strong>maxrows</strong>: (integer) The maximum number of rows to return in the response.</p>\n</li>\n<li><p><strong>syms_origin</strong>: (string) Specifies the origin of the symbols to be retrieved, defaulting to \"All\". Other entires can be \"SitePad\" or \"Outlook\".</p>\n</li>\n<li><p><strong>syms_direction</strong>: (string) Specifies the direction of the symbols, defaulting to \"All\". Other entries can be \"In\" or \"Out\".</p>\n</li>\n<li><p><strong>mkc_id</strong>: (integer or null) An optional identifier for a specific contact. This is mutually exclusive with <strong>mkc_email</strong>.</p>\n</li>\n<li><p><strong>mkc_email</strong>: (string or null) An optional email for a specific contact. This is mutually exclusive with <strong>mkc_id</strong>.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"expected-response-format\">Expected Response Format</h4>\n<p>The response will typically be in JSON format and will include the requested data based on the parameters provided in the request body. The structure of the response will depend on the specific implementation and the data requested.</p>\n<p>Ensure that all required fields are populated correctly to receive the expected results.</p>\n","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"875c43ab-5a50-4147-9e67-2cf51c5a7af8","name":"fetchQueuedCommunications","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"             : \"{{id}}\",\r\n     \"tenant\"         : \"{{tenant}}\",\r\n     \"email\"          : \"{{email}}\",\r\n     \"password\"       : \"{{password}}\",\r\n     \"method\"         : \"{{method}}\",\r\n     \"datalevel\"      : \"verbose\",\r\n     \"offset\"         : 0,\r\n     \"maxrows\"        : 100,     \r\n     \"syms_origin\"    : \"All\",\r\n     \"syms_direction\" : \"All\",\r\n     \"mkc_id\"         : null,\r\n     \"mkc_email\"      : null}\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"sitepad\": {\r\n        \"header\": {\r\n            \"id\": \"\",\r\n            \"method\": \"fetchQueuedCommunications\",\r\n            \"response\": \"SUCCESS\"\r\n        },\r\n        \"body\": [\r\n            {\r\n                \"id\": \"\",\r\n                \"symsl_id\": 23,\r\n                \"symsl_status\": \"Queued\",\r\n                \"createdDateTime\": \"2025-09-28 15:33:44\",\r\n                \"modifiedDateTime\": \"2025-09-28 15:33:48\",\r\n                \"receivedDateTime\": null,\r\n                \"sentDateTime\": null,\r\n                \"hasAttachments\": false,\r\n                \"subject\": \"Free Text\",\r\n                \"importance\": \"Normal\",\r\n                \"conversationId\": null,\r\n                \"body\": {\r\n                    \"contentType\": \"html\",\r\n                    \"content\": \"<p>AAAAAAAAAAA <strong>BBBBBBBBBB </strong>CCCCCCCC DDDDDDDDDD&nbsp;</p>\"\r\n                },\r\n                \"sender\": {\r\n                    \"emailAddress\": {\r\n                        \"name\": \"Steve Curd\",\r\n                        \"address\": \"steve.curd@yahoo.co.uk\"\r\n                    }\r\n                },\r\n                \"from\": {\r\n                    \"emailAddress\": {\r\n                        \"name\": \"Steve Curd\",\r\n                        \"address\": \"steve.curd@yahoo.co.uk\"\r\n                    }\r\n                },\r\n                \"toRecipients\": [\r\n                    {\r\n                        \"emailAddress\": {\r\n                            \"name\": \"Adam Melpous\",\r\n                            \"address\": \"adam.melpous@bbc.co.uk\"\r\n                        }\r\n                    }\r\n                ],\r\n                \"references\": {\r\n                    \"syms_id\": 7,\r\n                    \"syms_origin\": \"SitePad\",\r\n                    \"syms_direction\": \"Out\",\r\n                    \"syms_table\": \"mk_contact\",\r\n                    \"symsl_source_id\": 1076,\r\n                    \"sym_id\": 567,\r\n                    \"sym_freetext\": \"on\",\r\n                    \"syu_id\": 1\r\n                }\r\n            },\r\n            {\r\n                \"id\": \"\",\r\n                \"symsl_id\": 68,\r\n                \"symsl_status\": \"Queued\",\r\n                \"createdDateTime\": \"2025-09-29 09:46:11\",\r\n                \"modifiedDateTime\": \"2025-09-29 09:46:15\",\r\n                \"receivedDateTime\": null,\r\n                \"sentDateTime\": null,\r\n                \"hasAttachments\": false,\r\n                \"subject\": \"Letter of Concern\",\r\n                \"importance\": \"High\",\r\n                \"conversationId\": null,\r\n                \"body\": {\r\n                    \"contentType\": \"html\",\r\n                    \"content\": \"<p class=\\\"MsoNoSpacing\\\" style=\\\"line-height: 1;\\\">Pauline Smith</p>\\n<p class=\\\"MsoNoSpacing\\\" style=\\\"line-height: 1;\\\"></p>\\n<p class=\\\"MsoNoSpacing\\\" style=\\\"line-height: 1;\\\"></p>\\n<p class=\\\"MsoNoSpacing\\\" style=\\\"line-height: 1;\\\"></p>\\n<p class=\\\"MsoNoSpacing\\\" style=\\\"line-height: 1;\\\"></p>\\n<p class=\\\"MsoNoSpacing\\\" style=\\\"line-height: 1;\\\"></p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">ddd</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">Dear Pauline Smith</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">Following your <strong>iii</strong> on <strong>iii</strong> we have now received a complaint from the client.<span style=\\\"mso-spacerun: yes;\\\">&nbsp; </span>As a business we value our clients and want to provide the highest level of service at all times.<span style=\\\"mso-spacerun: yes;\\\">&nbsp; </span>As you can appreciate due to your iii the client is very disappointed in the service provided.</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">As a service provider to McGinley Support Services you are expected to act in a professional manner in order for client relations to be maintained at an optimum level.</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">Having carefully reviewed the circumstances, I have decided that a warning is the appropriate sanction for your <strong>iii</strong>.</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">This letter is to be treated as confirmation that I have discussed my concerns with you and that you are expected to make every effort to address the shortcomings that have been identified. This letter will be kept in your company file and thus takes the form of what I consider to be a reasonable written management instruction.</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">Should there be any repeat of this conduct, or indeed any misconduct in general you may be subject to the termination of your services.</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">If you have any queries regarding the content of this letter please do not hesitate to contact me.</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">Yours sincerely</p>\\n<p class=\\\"MsoNoSpacing\\\">For and on Behalf of</p>\\n<p class=\\\"MsoNoSpacing\\\">McGinley Support Services (Infrastructure) Ltd</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\">&nbsp;</p>\\n<p class=\\\"MsoNoSpacing\\\"><strong>&nbsp;</strong></p>\\n<p class=\\\"MsoNoSpacing\\\">rrrr</p>\\n<p class=\\\"MsoNoSpacing\\\">uuu</p>\"\r\n                },\r\n                \"sender\": {\r\n                    \"emailAddress\": {\r\n                        \"name\": \"Steve Curd\",\r\n                        \"address\": \"steve.curd@yahoo.co.uk\"\r\n                    }\r\n                },\r\n                \"from\": {\r\n                    \"emailAddress\": {\r\n                        \"name\": \"Steve Curd\",\r\n                        \"address\": \"steve.curd@yahoo.co.uk\"\r\n                    }\r\n                },\r\n                \"toRecipients\": [\r\n                    {\r\n                        \"emailAddress\": {\r\n                            \"name\": \"Pauline Smith\",\r\n                            \"address\": \"pauline@bbc.co.uk\"\r\n                        }\r\n                    }\r\n                ],\r\n                \"references\": {\r\n                    \"syms_id\": 11,\r\n                    \"syms_origin\": \"SitePad\",\r\n                    \"syms_direction\": \"Out\",\r\n                    \"syms_table\": \"mk_candidate\",\r\n                    \"symsl_source_id\": 2465,\r\n                    \"sym_id\": 393,\r\n                    \"sym_freetext\": \"off\",\r\n                    \"syu_id\": 1\r\n                }\r\n            }\r\n        ]\r\n    }\r\n}"}],"_postman_id":"7c48adf6-f5a9-4355-9560-5f67b696066d"},{"name":"fetchSentCommunications","event":[{"listen":"prerequest","script":{"id":"2d619e17-8f88-4d5e-9a6f-0413d4982a3b","exec":["pm.variables.set(\"method\",\"fetchSentCommunications\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"32acce3f-00e7-4606-9a08-8a7196e5f46e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"             : \"{{id}}\",\r\n     \"tenant\"         : \"{{tenant}}\",\r\n     \"email\"          : \"{{email}}\",\r\n     \"password\"       : \"{{password}}\",\r\n     \"method\"         : \"{{method}}\",\r\n     \"datalevel\"      : \"verbose\",\r\n     \"offset\"         : 0,\r\n     \"maxrows\"        : 100,     \r\n     \"syms_origin\"    : \"All\",\r\n     \"syms_direction\" : \"All\",\r\n     \"mkc_id\"         : null,\r\n     \"mkc_email\"      : null}\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"32acce3f-00e7-4606-9a08-8a7196e5f46e"},{"name":"fetchUpdatedCommunications","event":[{"listen":"prerequest","script":{"id":"2d619e17-8f88-4d5e-9a6f-0413d4982a3b","exec":["pm.variables.set(\"method\",\"fetchUpdatedCommunications\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4fe91a98-3830-491a-be8d-73cd0fd3f710","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"             : \"{{id}}\",\r\n     \"tenant\"         : \"{{tenant}}\",\r\n     \"email\"          : \"{{email}}\",\r\n     \"password\"       : \"{{password}}\",\r\n     \"method\"         : \"{{method}}\",\r\n     \"datalevel\"      : \"verbose\",\r\n     \"updatesSince\"   : \"2025-08-01\",\r\n     \"offset\"         : 0,\r\n     \"maxrows\"        : 100}          \r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"4fe91a98-3830-491a-be8d-73cd0fd3f710"},{"name":"addCommunication","event":[{"listen":"prerequest","script":{"id":"2d619e17-8f88-4d5e-9a6f-0413d4982a3b","exec":["pm.variables.set(\"method\",\"addCommunication\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"38094763-d5c6-4c62-b948-0953dbd48719","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n        {\r\n            \"id\": \"AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC-Zv4-OQGbTb4dpFf-78kPBwDXZkFM8_AlSqEKaIDA-OGVAAAAAAEJAADXZkFM8_AlSqEKaIDA-OGVAAC_8MbkAAA=\",\r\n            \"createdDateTime\": \"2025-09-23T16:34:37Z\",\r\n            \"lastModifiedDateTime\": \"2025-09-23T16:35:25Z\",\r\n            \"receivedDateTime\": \"2025-09-23T16:35:25Z\",\r\n            \"sentDateTime\": \"2025-09-23T16:35:24Z\",\r\n            \"hasAttachments\": false,\r\n            \"subject\": \"Test email to share with SitePad CRM team\",\r\n            \"importance\": \"normal\",\r\n            \"conversationId\": \"AAQkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOAAQAAcMSD4pOA1Gl4U8Ek16IHw=\",\r\n            \"webLink\": \"https://outlook.office365.com/owa/?ItemID=AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC%2FZv4%2FOQGbTb4dpFf%2F78kPBwDXZkFM8%2BAlSqEKaIDA%2FOGVAAAAAAEJAADXZkFM8%2BAlSqEKaIDA%2FOGVAAC%2B8MbkAAA%3D&exvsurl=1&viewmodel=ReadMessageItem\",\r\n            \"body\": \r\n            {\r\n                \"contentType\": \"html\",\r\n                \"content\": \"I'm fine thanks\"\r\n             },\r\n            \"sender\": \r\n            {\r\n                \"emailAddress\": \r\n                {\r\n                    \"name\": \"Adam Melpous\",\r\n                    \"address\": \"adam.melpous@bbc.co.uk\"\r\n                }\r\n            },\r\n            \"from\": \r\n            {\r\n                \"emailAddress\": \r\n                {\r\n                    \"name\": \"Adam Melpous\",\r\n                    \"address\": \"adam.melpous@bbc.co.uk\"\r\n                }\r\n            },\r\n            \"toRecipients\": \r\n            [\r\n                {\r\n                    \"emailAddress\": \r\n                    {\r\n                        \"name\": \"Steve Curd\",\r\n                        \"address\": \"steve.curd@yahoo.co.uk\"\r\n                    }\r\n                },\r\n                {\r\n                    \"emailAddress\": \r\n                    {\r\n                        \"name\": \"Steve Curd 51\",\r\n                        \"address\": \"stevecurd51@gmail.com\"\r\n                    }\r\n                }\r\n            ],\r\n            \"ccRecipients\": [],\r\n            \"bccRecipients\": [],\r\n            \"replyTo\": []\r\n        }\r\n     ]\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php","description":"<h2 id=\"api-endpoint-post\">API Endpoint: POST</h2>\n<p>This endpoint is designed to process a request involving email data, specifically for integration with SitePad. It allows users to send email-related information, including metadata about the email and its content.</p>\n<h3 id=\"request-body-format\">Request Body Format</h3>\n<p>The request body must be formatted as a JSON object containing the following structure:</p>\n<ul>\n<li><p><strong>sitepad</strong>: An object that encapsulates the request details.</p>\n<ul>\n<li><p><strong>header</strong>: An object containing metadata for the request.</p>\n<ul>\n<li><p><strong>id</strong>: A unique identifier for the request.</p>\n</li>\n<li><p><strong>tenant</strong>: The tenant associated with the request.</p>\n</li>\n<li><p><strong>email</strong>: The email address of the user making the request.</p>\n</li>\n<li><p><strong>password</strong>: The password for authentication.</p>\n</li>\n<li><p><strong>method</strong>: The method of the request.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>body</strong>: An array of email objects, where each object includes:</p>\n<ul>\n<li><p><strong>id</strong>: A unique identifier for the email.</p>\n</li>\n<li><p><strong>createdDateTime</strong>: The timestamp when the email was created.</p>\n</li>\n<li><p><strong>lastModifiedDateTime</strong>: The timestamp when the email was last modified.</p>\n</li>\n<li><p><strong>receivedDateTime</strong>: The timestamp when the email was received.</p>\n</li>\n<li><p><strong>sentDateTime</strong>: The timestamp when the email was sent.</p>\n</li>\n<li><p><strong>hasAttachments</strong>: A boolean indicating if the email has attachments.</p>\n</li>\n<li><p><strong>subject</strong>: The subject line of the email.</p>\n</li>\n<li><p><strong>importance</strong>: The importance level of the email (e.g., normal).</p>\n</li>\n<li><p><strong>conversationId</strong>: An identifier for the conversation thread.</p>\n</li>\n<li><p><strong>webLink</strong>: A link to view the email in a web interface.</p>\n</li>\n<li><p><strong>body</strong>: An object containing:</p>\n<ul>\n<li><p><strong>contentType</strong>: The type of content (e.g., html).</p>\n</li>\n<li><p><strong>content</strong>: The actual content of the email.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>sender</strong>: An object representing the sender's email address.</p>\n<ul>\n<li><p><strong>emailAddress</strong>: An object containing:</p>\n<ul>\n<li><p><strong>name</strong>: The name of the sender.</p>\n</li>\n<li><p><strong>address</strong>: The email address of the sender.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>from</strong>: An object representing the sender's email address, similar to the sender object.</p>\n</li>\n<li><p><strong>toRecipients</strong>: An array of objects representing the recipients of the email.</p>\n<ul>\n<li><p><strong>emailAddress</strong>: An object containing:</p>\n<ul>\n<li><p><strong>name</strong>: The name of the recipient.</p>\n</li>\n<li><p><strong>address</strong>: The email address of the recipient.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>ccRecipients</strong>: An array for carbon copy recipients (if any).</p>\n</li>\n<li><p><strong>bccRecipients</strong>: An array for blind carbon copy recipients (if any).</p>\n</li>\n<li><p><strong>replyTo</strong>: An array for reply-to addresses (if any).</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response-structure\">Expected Response Structure</h3>\n<p>The response from this endpoint will typically include a confirmation of the request processing, along with any relevant status messages or error codes. The structure of the response may vary depending on the success or failure of the request but will generally include:</p>\n<ul>\n<li><p><strong>status</strong>: A string indicating the success or failure of the request.</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message providing additional context about the request outcome.</p>\n</li>\n<li><p><strong>data</strong>: An optional object containing any additional data related to the processed email, if applicable.</p>\n</li>\n</ul>\n<p>Ensure that the request body adheres to the specified format for successful processing.</p>\n","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"e23a8d20-a4c3-4cd3-80cd-937d8f469774","name":"addCommunication","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n        {\r\n            \"id\": \"AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC-Zv4-OQGbTb4dpFf-78kPBwDXZkFM8_AlSqEKaIDA-OGVAAAAAAEJAADXZkFM8_AlSqEKaIDA-OGVAAC_8MbkAAA=\",\r\n            \"createdDateTime\": \"2025-09-23T16:34:37Z\",\r\n            \"lastModifiedDateTime\": \"2025-09-23T16:35:25Z\",\r\n            \"receivedDateTime\": \"2025-09-23T16:35:25Z\",\r\n            \"sentDateTime\": \"2025-09-23T16:35:24Z\",\r\n            \"hasAttachments\": false,\r\n            \"subject\": \"Test email to share with SitePad CRM team\",\r\n            \"importance\": \"normal\",\r\n            \"conversationId\": \"AAQkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOAAQAAcMSD4pOA1Gl4U8Ek16IHw=\",\r\n            \"webLink\": \"https://outlook.office365.com/owa/?ItemID=AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC%2FZv4%2FOQGbTb4dpFf%2F78kPBwDXZkFM8%2BAlSqEKaIDA%2FOGVAAAAAAEJAADXZkFM8%2BAlSqEKaIDA%2FOGVAAC%2B8MbkAAA%3D&exvsurl=1&viewmodel=ReadMessageItem\",\r\n            \"body\": \r\n            {\r\n                \"contentType\": \"html\",\r\n                \"content\": \"I'm fine thanks\"\r\n             },\r\n            \"sender\": \r\n            {\r\n                \"emailAddress\": \r\n                {\r\n                    \"name\": \"Adam Melpous\",\r\n                    \"address\": \"adam.melpous@bbc.co.uk\"\r\n                }\r\n            },\r\n            \"from\": \r\n            {\r\n                \"emailAddress\": \r\n                {\r\n                    \"name\": \"Adam Melpous\",\r\n                    \"address\": \"adam.melpous@bbc.co.uk\"\r\n                }\r\n            },\r\n            \"toRecipients\": \r\n            [\r\n                {\r\n                    \"emailAddress\": \r\n                    {\r\n                        \"name\": \"Steve Curd\",\r\n                        \"address\": \"steve.curd@yahoo.co.uk\"\r\n                    }\r\n                },\r\n                {\r\n                    \"emailAddress\": \r\n                    {\r\n                        \"name\": \"Steve Curd 51\",\r\n                        \"address\": \"stevecurd51@gmail.com\"\r\n                    }\r\n                }\r\n            ],\r\n            \"ccRecipients\": [],\r\n            \"bccRecipients\": [],\r\n            \"replyTo\": []\r\n        }\r\n     ]\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"sitepad\": {\r\n        \"header\": {\r\n            \"id\": \"\",\r\n            \"method\": \"addCommunication\",\r\n            \"response\": \"SUCCESS\"\r\n        },\r\n        \"body\": {\r\n            \"emailsCreated\": [\r\n                {\r\n                    \"id\": \"AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC-Zv4-OQGbTb4dpFf-78kPBwDXZkFM8_AlSqEKaIDA-OGVAAAAAAEJAADXZkFM8_AlSqEKaIDA-OGVAAC_8MbkAAA=\",\r\n                    \"sitepad_id\": \"75\"\r\n                },\r\n                {\r\n                    \"id\": \"AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC-Zv4-OQGbTb4dpFf-78kPBwDXZkFM8_AlSqEKaIDA-OGVAAAAAAEJAADXZkFM8_AlSqEKaIDA-OGVAAC_8MbkAAA=\",\r\n                    \"sitepad_id\": \"76\"\r\n                }\r\n            ],\r\n            \"emailsNotCreated\": []\r\n        }\r\n    }\r\n}"}],"_postman_id":"38094763-d5c6-4c62-b948-0953dbd48719"},{"name":"updateCommunicationOutlookReferences","event":[{"listen":"prerequest","script":{"id":"2d619e17-8f88-4d5e-9a6f-0413d4982a3b","exec":["pm.variables.set(\"method\",\"updateCommunicationOutlookReferences\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a2eba7e1-f7bc-4f87-a14b-678cd862ad3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"symsl_id\":\"5\",\r\n        \"id\":\"AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC-Zv4-OQGbTb4dpFf-78kPBwDXZkFM8_AlSqEKaIDA-OGVAAAAAAEJAADXZkFM8_AlSqEKaIDA-OGVAAC_8MbkAAA=\",\r\n        \"conversationId\":\"AAQkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOAAQAAcMSD4pOA1Gl4U8Ek16IHw=\",\r\n        \"webLink\": \"https://outlook.office365.com/owa/?ItemID=AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC%2FZv4%2FOQGbTb4dpFf%2F78kPBwDXZkFM8%2BAlSqEKaIDA%2FOGVAAAAAAEJAADXZkFM8%2BAlSqEKaIDA%2FOGVAAC%2B8MbkAAA%3D&exvsurl=1&viewmodel=ReadMessageItem\",\r\n        \"sentDateTime\": \"2025-10-07T07:28:32Z\"\r\n       }\r\n     ]   \r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"dda580a2-8883-420e-aad9-12759fbba795","name":"updateCommunicationOutlookReferences","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"symsl_id\":\"5\",\r\n        \"id\":\"AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC-Zv4-OQGbTb4dpFf-78kPBwDXZkFM8_AlSqEKaIDA-OGVAAAAAAEJAADXZkFM8_AlSqEKaIDA-OGVAAC_8MbkAAA=\",\r\n        \"conversationId\":\"AAQkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOAAQAAcMSD4pOA1Gl4U8Ek16IHw=\",\r\n        \"webLink\": \"https://outlook.office365.com/owa/?ItemID=AAMkADdkOGE1NTE1LWMyYmItNGIyYy1iZmViLTQzZmE2OWViZjZjOABGAAAAAAC%2FZv4%2FOQGbTb4dpFf%2F78kPBwDXZkFM8%2BAlSqEKaIDA%2FOGVAAAAAAEJAADXZkFM8%2BAlSqEKaIDA%2FOGVAAC%2B8MbkAAA%3D&exvsurl=1&viewmodel=ReadMessageItem\"\r\n       }\r\n     ]   \r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://localhost/cp_public_html/sitepad/service.php"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"sitepad\": {\r\n        \"header\": {\r\n            \"id\": \"\",\r\n            \"method\": \"updateCommunicationOutlookReferences\",\r\n            \"response\": \"SUCCESS\"\r\n        },\r\n        \"body\": []\r\n    }\r\n}"}],"_postman_id":"a2eba7e1-f7bc-4f87-a14b-678cd862ad3c"}],"id":"6710952d-981c-4439-817e-79b75d8106d1","_postman_id":"6710952d-981c-4439-817e-79b75d8106d1","description":""},{"name":"Users","item":[{"name":"fetchUsers","event":[{"listen":"prerequest","script":{"id":"5e096a87-1550-4975-8369-f64e2f9663f3","exec":["pm.variables.set(\"method\",\"fetchUsers\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"0c635d44-ca0c-4bfe-ae04-b6aa2100632c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"syu_id\"      : null}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"282b5117-fd7f-4264-8267-74d769e30d07","name":"fetchUsers","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"syu_id\"      : null}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 14:00:40 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"3290"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUsers\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"syu_id\": 1,\n                \"syu_firstname\": \"Steve\",\n                \"syu_surname\": \"Curd\",\n                \"syu_phone\": \"01895822463\",\n                \"syu_mobile\": \"07917574603\",\n                \"syu_email\": \"steve.curd@coins-global.com\",\n                \"syu_consultant\": \"on\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": 123,\n                \"syu_created\": \"0000-00-00 00:00:00\",\n                \"syu_updated\": \"2024-08-07 19:50:57\"\n            },\n            {\n                \"syu_id\": 2,\n                \"syu_firstname\": \"Fred\",\n                \"syu_surname\": \"Bloggsss\",\n                \"syu_phone\": \"01895 111333\",\n                \"syu_mobile\": \"07777 444555\",\n                \"syu_email\": \"fred.bloggs@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"off\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-03-09 20:55:13\",\n                \"syu_updated\": \"2024-08-12 16:22:17\"\n            },\n            {\n                \"syu_id\": 3,\n                \"syu_firstname\": \"John\",\n                \"syu_surname\": \"Smith\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"john.smith@bbc.co.uk\",\n                \"syu_consultant\": \"on\",\n                \"syu_bdm\": \"on\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-03-09 20:55:58\",\n                \"syu_updated\": \"2024-05-25 15:34:26\"\n            },\n            {\n                \"syu_id\": 4,\n                \"syu_firstname\": \"Kol\",\n                \"syu_surname\": \"bbbbbbbbb-smith\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"aaaaa@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-03-23 18:37:00\",\n                \"syu_updated\": \"2024-05-25 15:34:27\"\n            },\n            {\n                \"syu_id\": 6,\n                \"syu_firstname\": \"Pete\",\n                \"syu_surname\": \"Baxter\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"pete@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"on\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-04-14 17:03:14\",\n                \"syu_updated\": \"2024-01-13 15:36:30\"\n            },\n            {\n                \"syu_id\": 11,\n                \"syu_firstname\": \"Harry\",\n                \"syu_surname\": \"Belafonte\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"harry@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-09-04 11:20:22\",\n                \"syu_updated\": \"2024-05-25 15:34:25\"\n            },\n            {\n                \"syu_id\": 14,\n                \"syu_firstname\": \"Kevin\",\n                \"syu_surname\": \"Smith\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"kevin@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-10-04 19:01:58\",\n                \"syu_updated\": \"2024-07-31 10:26:37\"\n            },\n            {\n                \"syu_id\": 133,\n                \"syu_firstname\": \"Tim\",\n                \"syu_surname\": \"A\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"tima@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"off\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2023-08-31 12:53:04\",\n                \"syu_updated\": \"2023-11-28 19:17:42\"\n            },\n            {\n                \"syu_id\": 134,\n                \"syu_firstname\": \"Tim\",\n                \"syu_surname\": \"B\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"timb@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2023-08-31 13:05:17\",\n                \"syu_updated\": \"2023-11-28 19:17:44\"\n            },\n            {\n                \"syu_id\": 199,\n                \"syu_firstname\": \"A\",\n                \"syu_surname\": \"B\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"a@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"off\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2024-05-10 22:18:58\",\n                \"syu_updated\": \"2024-05-11 09:24:50\"\n            },\n            {\n                \"syu_id\": 213,\n                \"syu_firstname\": \"Tim\",\n                \"syu_surname\": \"C\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"timc@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2023-08-31 13:05:17\",\n                \"syu_updated\": \"2023-11-28 19:17:44\"\n            },\n            {\n                \"syu_id\": 214,\n                \"syu_firstname\": \"Tim\",\n                \"syu_surname\": \"D\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"timd@bbc.co.uk\",\n                \"syu_consultant\": \"off\",\n                \"syu_bdm\": \"off\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2023-08-31 13:05:17\",\n                \"syu_updated\": \"2023-11-28 19:17:44\"\n            }\n        ]\n    }\n}"}],"_postman_id":"0c635d44-ca0c-4bfe-ae04-b6aa2100632c"},{"name":"fetchUpdatedUsers","event":[{"listen":"prerequest","script":{"id":"6606b471-10ed-4c5d-b3b5-a72694b142a1","exec":["pm.variables.set(\"method\",\"fetchUpdatedUsers\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"98beec5a-97be-4823-bd86-31f53422e0fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"2020-07-01\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"974bd27e-567d-4bca-b72d-06e78a228988","name":"fetchUpdatedUsers","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"2020-07-01\"}\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 14:00:51 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1680"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUpdatedUsers\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"action\": \"U\",\n                \"syu_id\": 1,\n                \"syu_firstname\": \"Steve\",\n                \"syu_surname\": \"Curd\",\n                \"syu_phone\": \"01895822463\",\n                \"syu_mobile\": \"07917574603\",\n                \"syu_email\": \"steve.curd@coins-global.com\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": 123,\n                \"syu_created\": \"0000-00-00 00:00:00\",\n                \"syu_updated\": \"2024-08-07 19:50:57\"\n            },\n            {\n                \"action\": \"U\",\n                \"syu_id\": 2,\n                \"syu_firstname\": \"Fred\",\n                \"syu_surname\": \"Bloggsss\",\n                \"syu_phone\": \"01895 111333\",\n                \"syu_mobile\": \"07777 444555\",\n                \"syu_email\": \"fred.bloggs@bbc.co.uk\",\n                \"syu_active\": \"off\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-03-09 20:55:13\",\n                \"syu_updated\": \"2024-08-12 16:22:17\"\n            },\n            {\n                \"action\": \"U\",\n                \"syu_id\": 3,\n                \"syu_firstname\": \"John\",\n                \"syu_surname\": \"Smith\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"john.smith@bbc.co.uk\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-03-09 20:55:58\",\n                \"syu_updated\": \"2024-05-25 15:34:26\"\n            },\n            {\n                \"action\": \"U\",\n                \"syu_id\": 4,\n                \"syu_firstname\": \"Kol\",\n                \"syu_surname\": \"bbbbbbbbb-smith\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"aaaaa@bbc.co.uk\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-03-23 18:37:00\",\n                \"syu_updated\": \"2024-05-25 15:34:27\"\n            },\n            {\n                \"action\": \"U\",\n                \"syu_id\": 11,\n                \"syu_firstname\": \"Harry\",\n                \"syu_surname\": \"Belafonte\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"harry@bbc.co.uk\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-09-04 11:20:22\",\n                \"syu_updated\": \"2024-05-25 15:34:25\"\n            },\n            {\n                \"action\": \"U\",\n                \"syu_id\": 14,\n                \"syu_firstname\": \"Kevin\",\n                \"syu_surname\": \"Smith\",\n                \"syu_phone\": \"\",\n                \"syu_mobile\": \"\",\n                \"syu_email\": \"kevin@bbc.co.uk\",\n                \"syu_active\": \"on\",\n                \"rdb_id\": null,\n                \"syu_created\": \"2021-10-04 19:01:58\",\n                \"syu_updated\": \"2024-07-31 10:26:37\"\n            },\n            {\n                \"action\": \"D\",\n                \"syu_id\": 191\n            },\n            {\n                \"action\": \"D\",\n                \"syu_id\": 210\n            },\n            {\n                \"action\": \"D\",\n                \"syu_id\": 211\n            }\n        ]\n    }\n}"}],"_postman_id":"98beec5a-97be-4823-bd86-31f53422e0fc"},{"name":"addUser","event":[{"listen":"prerequest","script":{"id":"664f1447-7575-4a0d-8de4-c7a7f17d0a9f","exec":["pm.variables.set(\"method\",\"addUser\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"3a948ce3-ae6f-4a41-8a5b-27f7d3455cac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n  },\r\n   \"body\":\r\n     [\r\n       {\"syu_firstname\":\"Jackson\",\r\n        \"syu_surname\":\"Brown\",\r\n        \"syu_email\":\"jackson.brown@bbc.co.uk\"\r\n       }\r\n     ]\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","description":"<h3 id=\"endpoint-description\">Endpoint Description</h3>\n<p>This endpoint is designed to handle user registration or profile updates by accepting user details and authentication information. The request is sent as a JSON payload, which includes both header and body sections.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>sitepad</strong>: The main object containing the request details.</p>\n<ul>\n<li><p><strong>header</strong>: Metadata about the request.</p>\n<ul>\n<li><p><strong>id</strong> (string): A unique identifier for the request.</p>\n</li>\n<li><p><strong>tenant</strong> (string): The tenant identifier.</p>\n</li>\n<li><p><strong>email</strong> (string): The user's email address for authentication.</p>\n</li>\n<li><p><strong>password</strong> (string): The user's password for authentication.</p>\n</li>\n<li><p><strong>method</strong> (string): The method of operation (e.g., create or update).</p>\n</li>\n</ul>\n</li>\n<li><p><strong>body</strong>: An array of user details to be processed.</p>\n<ul>\n<li><p>Each object in the array should contain:</p>\n<ul>\n<li><p><strong>syu_firstname</strong> (string): The first name of the user.</p>\n</li>\n<li><p><strong>syu_surname</strong> (string): The surname of the user.</p>\n</li>\n<li><p><strong>syu_email</strong> (string): The email address of the user.</p>\n</li>\n<li><p>Other fields on the User table [sy_user]</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a JSON response with the following structure:</p>\n<ul>\n<li><p><strong>sitepad</strong>: The main object containing the response details.</p>\n<ul>\n<li><p><strong>header</strong>: Metadata about the response.</p>\n<ul>\n<li><p><strong>id</strong> (string): The identifier of the request (may be empty).</p>\n</li>\n<li><p><strong>method</strong> (string): The method used for the request (may be empty).</p>\n</li>\n<li><p><strong>response</strong> (string): A status message or code indicating the result of the operation (may be empty).</p>\n</li>\n</ul>\n</li>\n<li><p><strong>body</strong>: An array that contains the unique ids of the users just added.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that all required fields in the request body are filled out correctly to avoid errors.</p>\n</li>\n<li><p>The response will provide information regarding the success or failure of the request, which can be used for further processing or user feedback.</p>\n</li>\n</ul>\n","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"692a6538-f9e9-4063-b861-b3f02220955b","name":"addUser","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n  },\r\n   \"body\":\r\n     [\r\n       {\"syu_firstname\":\"Jackson\",\r\n        \"syu_user\":\"Brown\",\r\n        \"syu_email\":\"jackson.brown@bbc.co.uk\"\r\n       }\r\n     ]\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"sitepad\": {\r\n        \"header\": {\r\n            \"id\": \"\",\r\n            \"method\": \"addUser\",\r\n            \"response\": \"SUCCESS\"\r\n        },\r\n        \"body\": [\r\n            \"240\"\r\n        ]\r\n    }\r\n}"}],"_postman_id":"3a948ce3-ae6f-4a41-8a5b-27f7d3455cac"},{"name":"updateUser","event":[{"listen":"prerequest","script":{"id":"664f1447-7575-4a0d-8de4-c7a7f17d0a9f","exec":["pm.variables.set(\"method\",\"updateUser\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@yahoo.co.uk\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"2e52bd22-083b-42c8-8467-eae99a51ae61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n  },\r\n   \"body\":\r\n     [\r\n       {\"syu_id\":240,\r\n        \"syu_firstname\":\"Jackson\",\r\n        \"syu_surname\":\"Brownie\",\r\n        \"syu_email\":\"jackson.brown@bbc.co.uk\"\r\n       }\r\n     ]\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"ee36682b-2de6-46ea-9853-a915b153feda","name":"addUser","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n  },\r\n   \"body\":\r\n     [\r\n       {\"syu_firstname\":\"Jackson\",\r\n        \"syu_user\":\"Brown\",\r\n        \"syu_email\":\"jackson.brown@bbc.co.uk\"\r\n       }\r\n     ]\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"sitepad\": {\r\n        \"header\": {\r\n            \"id\": \"\",\r\n            \"method\": \"addUser\",\r\n            \"response\": \"SUCCESS\"\r\n        },\r\n        \"body\": [\r\n            \"240\"\r\n        ]\r\n    }\r\n}"}],"_postman_id":"2e52bd22-083b-42c8-8467-eae99a51ae61"}],"id":"3213e062-524d-4705-adf8-4bf0b3e39439","_postman_id":"3213e062-524d-4705-adf8-4bf0b3e39439","description":""},{"name":"Products","item":[{"name":"fetchProductTypes","id":"0a3b3176-8588-4cc7-9d9d-c85a5ddf67b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"a110c65b7c77a17bee3d37b24487252b0ada90745ccb0d2d6641bbd4fb2fdbaa86190f1f31f414e8896d0412bff9b537999b19e5570bb93984f465ac4c75306b\",\r\n     \"method\"      : \"fetchProductTypes\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a3b3176-8588-4cc7-9d9d-c85a5ddf67b4"},{"name":"fetchProductTypeAttributes","id":"add1508b-e972-4aac-8a86-7c5e8b69f02f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123124\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"bd20dcbe766c75aec484c400daaaf59ca568dc3bf5c5dcb48864260f3fdd8dbeff575954fb8d5edaccb13621ab87b04a329ef74512a1936e2d7aeeafba5a54c0\",\r\n     \"method\"      : \"fetchProductTypeAttributes\",\r\n     \"sod_id\"      : 1}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"add1508b-e972-4aac-8a86-7c5e8b69f02f"},{"name":"fetchProductTypeSubtypes","id":"94a533f3-80ca-4d31-a157-4204fa3f568f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123124\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"010d135825c5fd928bd8d9bbb3a532ca0b368bd065ab33cbe4110d9a1ecff28b082b611c3a43cb47f7bc6ac95106905fbd71eb15268b40e21b868a57dafb1706\",\r\n     \"method\"      : \"fetchProductTypeSubtypes\",\r\n     \"sod_id\"      : 1}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/crm/service.php","urlObject":{"protocol":"http","path":["cp_public_html","crm","service.php"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"94a533f3-80ca-4d31-a157-4204fa3f568f"},{"name":"fetchProducts","id":"c9d2c78a-fca8-4600-bfa0-37ae51ebf006","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchProducts\",\r\n     \"sod_id\"      : \"1\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9d2c78a-fca8-4600-bfa0-37ae51ebf006"},{"name":"fetchProductAttributes","id":"c9d384ca-5198-441a-902e-ecef92c85c2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123126\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"0612f813b9b9b36e80875567d27c923348501a28b5aabe4f83e1d09cb6c8350b75e97117de819e4f1dd8b07e37104b56ae518d855815c31f1acdd37577861754\",\r\n     \"method\"      : \"fetchProductAttributes\",\r\n     \"sop_id\"      : 1}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9d384ca-5198-441a-902e-ecef92c85c2f"},{"name":"fetchProductSubtypes","id":"ed7279dc-c3b9-44c7-b615-b6035dcaf4d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123126\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"0612f813b9b9b36e80875567d27c923348501a28b5aabe4f83e1d09cb6c8350b75e97117de819e4f1dd8b07e37104b56ae518d855815c31f1acdd37577861754\",\r\n     \"method\"      : \"fetchProductSubtypes\",\r\n     \"sop_id\"      : \"1\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"ed7279dc-c3b9-44c7-b615-b6035dcaf4d6"}],"id":"8f92c27d-4a2f-4a9d-9271-3944db2570a9","_postman_id":"8f92c27d-4a2f-4a9d-9271-3944db2570a9","description":""},{"name":"Orders","item":[{"name":"fetchOrderTypes","id":"c6705dd9-d950-47c6-8957-42b8647f9d22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123126\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"0612f813b9b9b36e80875567d27c923348501a28b5aabe4f83e1d09cb6c8350b75e97117de819e4f1dd8b07e37104b56ae518d855815c31f1acdd37577861754\",\r\n     \"method\"      : \"fetchOrderTypes\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"c6705dd9-d950-47c6-8957-42b8647f9d22"},{"name":"fetchProductsAndWasteTypes","event":[{"listen":"prerequest","script":{"id":"de47835c-316a-452f-85b3-c4f6426f3f46","exec":["pm.variables.set(\"method\",\"fetchProductsAndWasteTypes\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"aff0420a-fced-443f-ae95-73d8074d6105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"\r\n{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"pjs_id\"      : 1635 \r\n    }\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"aff0420a-fced-443f-ae95-73d8074d6105"},{"name":"fetchJobTypes","id":"fc129e90-860d-4afe-b559-c0ef68489ae6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123126\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"0612f813b9b9b36e80875567d27c923348501a28b5aabe4f83e1d09cb6c8350b75e97117de819e4f1dd8b07e37104b56ae518d855815c31f1acdd37577861754\",\r\n     \"method\"      : \"fetchJobTypes\",\r\n     \"sop_id\"      : 6,\r\n     \"OrderId\"     : 70614,\r\n     \"ContractId\"  : 269,\r\n     \"ContractItemId\" : 1876}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","description":"<p>The response received by calling the <em><strong>fetchProductsAndWasteTypes</strong></em> service determines what fields must be supplied in this service's request:</p>\n<p>The Product Id (<em><strong>\"sop_id\"</strong></em>) must always be supplied.</p>\n<p>If <em><strong>\"CollectionOnly\"</strong></em> is \"off\" then you must supply the Order Id (<em><strong>\"OrderId\"</strong></em>).</p>\n<p>If <em><strong>\"CollectionOnly\"</strong></em> is \"on\" then you must supply the Contract Id (<em><strong>\"ContractId\"</strong></em>). and the Contract Item Id (<em><strong>\"ContractItemId\"</strong></em>).</p>\n","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"f684ddc2-643d-49c6-840b-c6e7b8e94ba5","name":"fetchJobTypes - Skip Orders (CollectionOnly = \"off\")","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123126\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"0612f813b9b9b36e80875567d27c923348501a28b5aabe4f83e1d09cb6c8350b75e97117de819e4f1dd8b07e37104b56ae518d855815c31f1acdd37577861754\",\r\n     \"method\"      : \"fetchJobTypes\",\r\n     \"sop_id\"      : 1,\r\n     \"OrderId\"     : 70614}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123126\",\n            \"method\": \"fetchJobTypes\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"OrderId\": 70614,\n                \"OrderNo\": \"2055325\",\n                \"ContractId\": null,\n                \"ContractNo\": null,\n                \"ContractItemId\": null,\n                \"JobTypeId\": \"0\",\n                \"JobTypeDesc\": \"DELIVERY\",\n                \"sol_sytt_id_ordertype\": 639,\n                \"JobTypeDescriptionFormatted\": \"DELIVERY against Order No: 2055325 dated 14-Apr-23 (No Previous Jobs)\"\n            },\n            {\n                \"OrderId\": 70614,\n                \"OrderNo\": \"2055325\",\n                \"ContractId\": null,\n                \"ContractNo\": null,\n                \"ContractItemId\": null,\n                \"JobTypeId\": \"4\",\n                \"JobTypeDesc\": \"WAIT&LOAD\",\n                \"sol_sytt_id_ordertype\": 641,\n                \"JobTypeDescriptionFormatted\": \"WAIT&LOAD against Order No: 2055325 dated 14-Apr-23 (No Previous Jobs)\"\n            }\n        ]\n    }\n}"},{"id":"0d906c25-3c1c-4da7-b05b-5267b6ef03f3","name":"fetchJobTypes - Trade Orders (CollectionOnly = \"on\")","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123126\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"0612f813b9b9b36e80875567d27c923348501a28b5aabe4f83e1d09cb6c8350b75e97117de819e4f1dd8b07e37104b56ae518d855815c31f1acdd37577861754\",\r\n     \"method\"      : \"fetchJobTypes\",\r\n     \"sop_id\"      : 6,\r\n     \"ContractId\"  : 269,\r\n     \"ContractItemId\" : 1876}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"123126\",\n            \"method\": \"fetchJobTypes\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"OrderId\": null,\n                \"OrderNo\": null,\n                \"ContractId\": 269,\n                \"ContractNo\": \"269\",\n                \"ContractItemId\": 1876,\n                \"JobTypeId\": \"2\",\n                \"JobTypeDesc\": \"EMPTY\",\n                \"sol_sytt_id_ordertype\": 642,\n                \"JobTypeDescriptionFormatted\": \"EMPTY against Contract No: 269 Start Date: 14-Feb-20 End Date: 14-Feb-24 Customer Order No: 4500118009\"\n            }\n        ]\n    }\n}"}],"_postman_id":"fc129e90-860d-4afe-b559-c0ef68489ae6"},{"name":"fetchOpenOrders","id":"559d6c54-6c9c-4b43-bfd9-d335e02751c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchOpenOrders\",\r\n     \"sodr_id\"     : \"1\",\r\n     \"sol_stage\"   : \"On Route\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"559d6c54-6c9c-4b43-bfd9-d335e02751c1"},{"name":"getSalesOrderDetails","id":"4bf21804-9e2a-42c4-a258-7b100cef0aa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"getSalesOrderDetails\",\r\n     \"soh_id\"      : 1635}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"4bf21804-9e2a-42c4-a258-7b100cef0aa4"},{"name":"addSalesOrder","id":"a030aacd-e989-4a5e-b990-f31825def8c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123127\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"d0b085fd9dcd1063a67b48dc242bed1667f8a63fce846e5e27807811f3e78b5967282850159723740e4073c2cf5418690b1a6c67c326a0e76e3ba02f3928b1e7\",\r\n     \"method\"      : \"addSalesOrder\"},\r\n   \"body\":\r\n     [\r\n       {\"OrderId\": \"59942\",\r\n        \"ContractId\": \"269\",\r\n        \"ContractItemId\": 1876,\r\n        \"sod_id\": \"1\",\r\n        \"mkc_id\": \"1749\",\r\n        \"pjs_id\": \"1541\",\r\n        \"mkc_id_site\": \"9999999999\",\r\n        \"mkc_firstname_site\": \"Jack\",\r\n        \"mkc_surname_site\": \"Taylor\",\r\n        \"mkc_mobile_site\": \"07917 574601\",\r\n        \"sop_id\": \"5\",\r\n        \"sods_id\": \"4\",\r\n        \"sol_qty\": \"1\",\r\n        \"sol_duedate\": \"2020-10-01\",\r\n        \"sol_sytt_id_dueslot\": \"644\",\r\n        \"sol_sytt_id_ordertype\": \"639\",\r\n        \"sol_pono\": \"PO1234\",\r\n        \"sol_so_required\": \"on\",\r\n        \"sol_so_details\": \"standing order every Monday\",\r\n        \"sol_notes\": \"SOME NOTESxxx\"\r\n        }        \r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"4bc95e9e-a7fc-47e2-9332-4f3d05cb9c89","name":"addSalesOrder","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123127\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"d0b085fd9dcd1063a67b48dc242bed1667f8a63fce846e5e27807811f3e78b5967282850159723740e4073c2cf5418690b1a6c67c326a0e76e3ba02f3928b1e7\",\r\n     \"method\"      : \"addSalesOrder\"},\r\n   \"body\":\r\n     [\r\n       {\"OrderId\": \"70043\",\r\n        \"sod_id\": \"1\",\r\n        \"mkc_id\": \"1749\",\r\n        \"pjs_id\": \"1541\",\r\n        \"mkc_id_site\": \"\",\r\n        \"sop_id\": \"2\",\r\n        \"sods_id\": \"4\",\r\n        \"sol_qty\": \"1\",\r\n        \"sol_duedate\": \"2020-10-01\",\r\n        \"sol_sytt_id_dueslot\": \"644\",\r\n        \"sol_sytt_id_ordertype\": \"639\",\r\n        \"sol_pono\": \"PO1234\",\r\n        \"sol_so_required\": \"on\",\r\n        \"sol_so_details\": \"standing order every Monday\",\r\n        \"sol_notes\": \"SOME NOTESxxx\"\r\n        }        \r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"sitepad\": {\r\n        \"header\": {\r\n            \"id\": \"123127\",\r\n            \"method\": \"addSalesOrder\",\r\n            \"response\": \"SUCCESS\"\r\n        },\r\n        \"body\": [\r\n            {\r\n                \"soh_id\": \"405\"\r\n            }\r\n        ]\r\n    }\r\n}"},{"id":"415cee83-1894-41ea-aded-b166084506e6","name":"addSalesOrder With New Site Contact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123127\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"d0b085fd9dcd1063a67b48dc242bed1667f8a63fce846e5e27807811f3e78b5967282850159723740e4073c2cf5418690b1a6c67c326a0e76e3ba02f3928b1e7\",\r\n     \"method\"      : \"addSalesOrder\"},\r\n   \"body\":\r\n     [\r\n       {\"OrderId\": \"70043\",\r\n        \"sod_id\": \"1\",\r\n        \"mkc_id\": \"1749\",\r\n        \"pjs_id\": \"1541\",\r\n        \"mkc_id_site\": \"9999999999\",\r\n        \"mkc_firstname_site\": \"Jack\",\r\n        \"mkc_surname_site\": \"Taylor\",\r\n        \"mkc_mobile_site\": \"07917 574601\",\r\n        \"sop_id\": \"2\",\r\n        \"sods_id\": \"4\",\r\n        \"sol_qty\": \"1\",\r\n        \"sol_duedate\": \"2020-10-01\",\r\n        \"sol_sytt_id_dueslot\": \"644\",\r\n        \"sol_sytt_id_ordertype\": \"639\",\r\n        \"sol_pono\": \"PO1234\",\r\n        \"sol_so_required\": \"on\",\r\n        \"sol_so_details\": \"standing order every Monday\",\r\n        \"sol_notes\": \"SOME NOTESxxx\"\r\n        }        \r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"sitepad\": {\r\n        \"header\": {\r\n            \"id\": \"123127\",\r\n            \"method\": \"addSalesOrder\",\r\n            \"response\": \"SUCCESS\"\r\n        },\r\n        \"body\": [\r\n            {\r\n                \"soh_id\": \"406\"\r\n            }\r\n        ]\r\n    }\r\n}"}],"_postman_id":"a030aacd-e989-4a5e-b990-f31825def8c3"},{"name":"setSalesOrderStatus","id":"da638113-84eb-40d1-90c5-0b1b73169579","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123127\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"d0b085fd9dcd1063a67b48dc242bed1667f8a63fce846e5e27807811f3e78b5967282850159723740e4073c2cf5418690b1a6c67c326a0e76e3ba02f3928b1e7\",\r\n     \"method\"      : \"setSalesOrderStatus\"},\r\n   \"body\":\r\n     [\r\n       {\"mkc_id\"     : \"973\",\r\n        \"soh_id\"     : \"1\",\r\n        \"sol_stage\"  : \"On Route\",\r\n        \"sol_status\" : \"Open\",\r\n        \"sol_lat\"    : \"51.1\",\r\n        \"sol_lng\"    : \"-0.136\"\r\n        }        \r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sol_stage</td>\n<td>Must be one of:  <br />\"Not Started\"  <br />\"On Route\"  <br />\"On Site\"</td>\n</tr>\n<tr>\n<td>sol_status</td>\n<td>Must be one of:  <br />\"Open\"  <br />\"Complete\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"da638113-84eb-40d1-90c5-0b1b73169579"},{"name":"fetchSalesOrderWeighsoftStatus","id":"257764d1-b046-4d4f-9cf1-3b7c7c747448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123127\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"d0b085fd9dcd1063a67b48dc242bed1667f8a63fce846e5e27807811f3e78b5967282850159723740e4073c2cf5418690b1a6c67c326a0e76e3ba02f3928b1e7\",\r\n     \"method\"      : \"fetchSalesOrderWeighsoftStatus\"},\r\n   \"body\":\r\n     [\r\n       {\"soh_id\"     : \"328\"},\r\n       {\"soh_id\"     : \"334\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sol_stage</td>\n<td>Must be one of:  <br />\"Not Started\"  <br />\"On Route\"  <br />\"On Site\"</td>\n</tr>\n<tr>\n<td>sol_status</td>\n<td>Must be one of:  <br />\"Open\"  <br />\"Complete\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"257764d1-b046-4d4f-9cf1-3b7c7c747448"}],"id":"332259a3-c4e9-4139-abfc-e3fc463636f6","_postman_id":"332259a3-c4e9-4139-abfc-e3fc463636f6","description":""},{"name":"General","item":[{"name":"Positions","item":[{"name":"fetchPositions","event":[{"listen":"prerequest","script":{"id":"3c57604e-8c44-4e8b-bb58-751072a81eb4","exec":["pm.variables.set(\"method\", \"fetchPositions\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"d7a74bbb-2bd6-44ef-916c-8f2732c93936","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"sytt_id\"      : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7a74bbb-2bd6-44ef-916c-8f2732c93936"},{"name":"addPosition","event":[{"listen":"prerequest","script":{"id":"3c57604e-8c44-4e8b-bb58-751072a81eb4","exec":["pm.variables.set(\"method\", \"addPosition\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"0d4998a4-612b-4860-9ccc-f2d576b5163b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"sytt_desc\":\"Position BBB\",\r\n        \"external_id\": null\r\n       }\r\n     ]\r\n  }\r\n}\r\n\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d4998a4-612b-4860-9ccc-f2d576b5163b"},{"name":"updatePosition","event":[{"listen":"prerequest","script":{"id":"3c57604e-8c44-4e8b-bb58-751072a81eb4","exec":["pm.variables.set(\"method\", \"updatePosition\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"502acf10-26c8-43ce-a19c-be7455549379","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\"\r\n    },\r\n   \"body\":\r\n     [\r\n       {\"sytt_id\": 87831,\r\n        \"external_id\":null,\r\n        \"sytt_desc\":\"Position AAAA\",\r\n        \"new_external_id\":null\r\n       }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"502acf10-26c8-43ce-a19c-be7455549379"}],"id":"5a1b2698-687b-42e0-826f-489b6d5fa340","_postman_id":"5a1b2698-687b-42e0-826f-489b6d5fa340","description":""},{"name":"Duties","item":[{"name":"fetchDuties","id":"2b9a8cd4-d46b-4992-83d8-2ed496be3794","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchDuties\",\r\n     \"mkcy_id\"     : null}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b9a8cd4-d46b-4992-83d8-2ed496be3794"},{"name":"addDuty","id":"f45ce562-95df-400f-a9e2-c835b4185209","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"addDuty\"\r\n    },\r\n   \"body\": [\r\n            {\r\n                \"mkcy_desc\": \"TESTD\",\r\n                \"signal_id\": 1004\r\n            },\r\n            {\r\n                \"mkcy_desc\": \"TESTE\",\r\n                \"signal_id\": 1005\r\n            }\r\n   ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"f45ce562-95df-400f-a9e2-c835b4185209"},{"name":"updateDuty","id":"d44bb15d-4e69-4449-8b6c-01fcf96bc597","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"updateDuty\"\r\n    },\r\n     \"body\": [\r\n            {\r\n                \"mkcy_id\": null,\r\n                \"signal_id\": 1001,\r\n                \"mkcy_desc\": \"TESTAA\",\r\n                \"new_signal_id\": null\r\n            },\r\n            {\r\n                \"mkcy_id\": \"11\",\r\n                \"xsignal_id\": 1005,\r\n                \"new_signal_id\": 1010\r\n            }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"d44bb15d-4e69-4449-8b6c-01fcf96bc597"}],"id":"03b83831-1622-4b2c-9d4a-0528dbb9391b","_postman_id":"03b83831-1622-4b2c-9d4a-0528dbb9391b","description":""},{"name":"Tickets","item":[{"name":"fetchTickets","id":"7a40c0a4-19f1-461f-b592-b466fa28c230","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchTickets\",\r\n     \"mkt_id\"     : null}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a40c0a4-19f1-461f-b592-b466fa28c230"},{"name":"addTicket","id":"cda8bfe2-c812-46bf-a576-15deefa4f99d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"addTicket\"\r\n    },\r\n     \"body\": [\r\n            {\r\n                \"mkt_desc\": \"TICKET 3\",\r\n                \"signal_id\": 1006\r\n            },\r\n            {\r\n                \"mkt_desc\": \"TICKET 4\",\r\n                \"signal_id\": 1007\r\n            }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"cda8bfe2-c812-46bf-a576-15deefa4f99d"},{"name":"updateTicket","id":"472a437c-2cd9-47eb-a236-fb9ca96beff2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"updateTicket\"\r\n    },\r\n     \"body\": [\r\n            {\r\n                \"mkt_id\": null,\r\n                \"signal_id\": 1008,\r\n                \"mkt_desc\": \"TICKET 4\",\r\n                \"new_signal_id\": 1008\r\n            },\r\n            {\r\n                \"mkt_id\": \"11\",\r\n                \"xsignal_id\": 1005,\r\n                \"new_signal_id\": 1010\r\n            }\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"472a437c-2cd9-47eb-a236-fb9ca96beff2"}],"id":"995e8c41-f813-42af-953a-aa37c011727d","_postman_id":"995e8c41-f813-42af-953a-aa37c011727d","description":""},{"name":"fetchDrivers","id":"918af96f-ac5c-4dec-a221-beda459572bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchDrivers\",\r\n     \"sodr_id\"     : 7}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"918af96f-ac5c-4dec-a221-beda459572bc"},{"name":"fetchTimeSlots","id":"dd8dec68-eeb4-489d-823e-27602a90c7de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123126\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e4b7b60ac7f3608911bb5b04a7e24951987aca8031ea522c179c5d6111ef6c6493024e94c95525b17fa52cfb6816cd45057c4c071cbf2d8b16880fbebf1940c5\",\r\n     \"method\"      : \"fetchTimeSlots\",\r\n     \"sop_id\"      : \"\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd8dec68-eeb4-489d-823e-27602a90c7de"},{"name":"getMainDepotLocation","id":"1f0c00ce-f1bb-45e3-bae3-cf8ac034ba2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"getMainDepotLocation\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f0c00ce-f1bb-45e3-bae3-cf8ac034ba2b"},{"name":"validateClientUserLogin","id":"1bd8b7d9-ff2a-49d3-b75a-b35d5165b829","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"88b77be6733e48efafd09c448fe90a57a35e21656c23f43e6e1c7bc3db2912c9ead7ac041b9ed56ee676fd301b25402b6545fd675a5d9ecbdc80729724495ef9\",\r\n     \"method\"      : \"validateClientUserLogin\",\r\n     \"mkc_email\"   : \"steve.curd@yahoo.co.uk\",\r\n     \"mkc_passwd\"  : \"Brentford02!\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"1bd8b7d9-ff2a-49d3-b75a-b35d5165b829"},{"name":"validateDriverLogin","id":"89c0d91f-86b4-4591-a584-7dbdbc2649aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"88b77be6733e48efafd09c448fe90a57a35e21656c23f43e6e1c7bc3db2912c9ead7ac041b9ed56ee676fd301b25402b6545fd675a5d9ecbdc80729724495ef9\",\r\n     \"method\"      : \"validateDriverLogin\",\r\n     \"sodr_pin\"    : \"999999\",\r\n     \"sodr_passwd\"  : \"Brentford02!\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"89c0d91f-86b4-4591-a584-7dbdbc2649aa"},{"name":"logoutClientUser","id":"20c995bc-2643-4692-83bc-b22a3e25c3e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"d835bca76aec72186d64e541516591595dc163d80093abb5e80d9f6c753a36f10ea3d4a98405ddd10f80910e2f3d61012b8c613b1f79c4a61b52963966714440\",\r\n     \"method\"      : \"logoutClientUser\",\r\n     \"mkc_id\"      : \"1559\"\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"20c995bc-2643-4692-83bc-b22a3e25c3e5"},{"name":"logoutDriver","id":"6e344cf1-404a-4a1a-8d5c-8c7feb6227c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"d835bca76aec72186d64e541516591595dc163d80093abb5e80d9f6c753a36f10ea3d4a98405ddd10f80910e2f3d61012b8c613b1f79c4a61b52963966714440\",\r\n     \"method\"      : \"logoutDriver\",\r\n     \"sodr_id\"     : \"1\",\r\n     \"session_id\"  : null\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e344cf1-404a-4a1a-8d5c-8c7feb6227c1"},{"name":"requestPasswordReset","id":"2167bf99-c17c-4831-9abf-d5b20f39ac07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"88b77be6733e48efafd09c448fe90a57a35e21656c23f43e6e1c7bc3db2912c9ead7ac041b9ed56ee676fd301b25402b6545fd675a5d9ecbdc80729724495ef9\",\r\n     \"method\"      : \"requestPasswordReset\",\r\n     \"mkc_email\"   : \"steve.curd@yahoo.co.uk\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"2167bf99-c17c-4831-9abf-d5b20f39ac07"},{"name":"requestDriverPasswordReset","id":"54c57d88-d838-4884-a1c7-bc2b91bad6c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"88b77be6733e48efafd09c448fe90a57a35e21656c23f43e6e1c7bc3db2912c9ead7ac041b9ed56ee676fd301b25402b6545fd675a5d9ecbdc80729724495ef9\",\r\n     \"method\"      : \"requestDriverPasswordReset\",\r\n     \"sodr_pin\"    : \"999999\"}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"54c57d88-d838-4884-a1c7-bc2b91bad6c2"},{"name":"setRdbId","id":"89113ac4-beeb-49af-952a-1359ea0f5c22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"setRdbId\"},\r\n   \"body\":\r\n     [\r\n       {\"table\":\"mk_note\",\"sitepad_id\":\"77\",\"rdb_id\":121213},\r\n       {\"table\":\"mk_note\",\"sitepad_id\":\"77\",\"rdb_id\":7802},\r\n       {\"table\":\"mk_contact\",\"sitepad_id\":\"166\",\"rdb_id\":\"7791\"},\r\n       {\"table\":\"pj_site\",\"sitepad_id\":\"70\",\"rdb_id\":\"6123\"},\r\n       {\"table\":\"pj_client\",\"sitepad_id\":\"516\",\"rdb_id\":\"5001\"},\r\n       {\"table\":\"mk_note\",\"sitepad_id\": \"249\",\"rdb_id\": 7798}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"89113ac4-beeb-49af-952a-1359ea0f5c22"},{"name":"fetchPSources","id":"90a10cb4-aef9-403c-a901-45e8f5bf4170","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchPSources\",\r\n     \"sytt_id\"     : null}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"90a10cb4-aef9-403c-a901-45e8f5bf4170"},{"name":"fetchProspectTypes","id":"672fc206-c4cc-41ba-922c-7dc0820bd266","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchProspectTypes\",\r\n     \"sytt_id\"     : null}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"672fc206-c4cc-41ba-922c-7dc0820bd266"},{"name":"fetchProspectStatuses","id":"0f098911-c5cb-433b-85b0-70bba7a70b3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchProspectStatuses\",\r\n     \"sytt_id\"     : null}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f098911-c5cb-433b-85b0-70bba7a70b3b"},{"name":"fetchTitles","id":"18ee4dc6-128c-4caf-b845-870b7f9cc54c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchTitles\",\r\n     \"sytt_id\"     : null}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"18ee4dc6-128c-4caf-b845-870b7f9cc54c"},{"name":"fetchGenders","id":"dd7ca88a-7fae-4b80-8039-40382105ad3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchGenders\",\r\n     \"sytt_id\"     : null}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd7ca88a-7fae-4b80-8039-40382105ad3f"},{"name":"fetchNationalities","id":"6a17a3fb-5ba6-485a-9faa-a89a12024adb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchNationalities\",\r\n     \"sytt_id\"     : null}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a17a3fb-5ba6-485a-9faa-a89a12024adb"},{"name":"fetchSubcontractorTypes","id":"d712641e-c885-46e7-ad8c-8c28f6c4030a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123125\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"fetchSubcontractorTypes\",\r\n     \"sytt_id\"     : null}\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"d712641e-c885-46e7-ad8c-8c28f6c4030a"},{"name":"SetCustomFieldSelectionListValues","id":"4baa58f0-0711-47ba-a2de-f24b88a0f127","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"123123\",\r\n     \"tenant\"      : \"1\",\r\n     \"email\"       : \"steve.curd@coins-global.com\",\r\n     \"password\"    : \"e781ea56de1084fa1dcd2f43b8528bb8943f81c632342ae130b2dddbe14f23c1eaac5fb250a29e2f9616485ea84c3ac14338c3cf179219c3e88f8bc316d735bb\",\r\n     \"method\"      : \"setCustomFieldSelectionListValues\"},\r\n   \"body\":\r\n     [\r\n       {\"sypaf_id\":\"72\",\"sypaf_values\":\"AAA,BBB,CCC\"},\r\n       {\"sypaf_id\":\"74\",\"sypaf_values\":\"DDD,EEE,FFF\"}\r\n     ]\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"4baa58f0-0711-47ba-a2de-f24b88a0f127"},{"name":"fetchUserLogins","event":[{"listen":"prerequest","script":{"id":"d38be860-9ca5-4598-8364-89d838763f03","exec":["pm.variables.set(\"method\",\"fetchUserLogins\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"4dfaa44e-ebf6-4ce9-89a6-65af4c0b7f96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"offset\"      : null,\r\n     \"maxrows\"     : null,\r\n     \"datefrom\"    : \"2024-09-01\",\r\n     \"dateto\"      : \"2024-09-08\",\r\n     \"syu_id\"      : 2 \r\n    }\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"d7d0d494-ff62-4ec3-aa37-912843d947f2","name":"fetchUserLogins","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"offset\"      : null,\r\n     \"maxrows\"     : null,\r\n     \"datefrom\"    : \"2024-09-01\",\r\n     \"dateto\"      : \"2024-09-08\",\r\n     \"syu_id\"      : null \r\n    }\r\n  }\r\n}\r\n"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 08 Sep 2024 15:05:51 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1186"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUserLogins\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"sylh_date\": \"2024-09-02\",\n                \"sylh_day\": \"Mon\",\n                \"sylh_month\": \"Sep\",\n                \"sylh_year\": 2024,\n                \"syu_numlogins\": 1\n            },\n            {\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"sylh_date\": \"2024-09-03\",\n                \"sylh_day\": \"Tue\",\n                \"sylh_month\": \"Sep\",\n                \"sylh_year\": 2024,\n                \"syu_numlogins\": 3\n            },\n            {\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"sylh_date\": \"2024-09-04\",\n                \"sylh_day\": \"Wed\",\n                \"sylh_month\": \"Sep\",\n                \"sylh_year\": 2024,\n                \"syu_numlogins\": 3\n            },\n            {\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"sylh_date\": \"2024-09-05\",\n                \"sylh_day\": \"Thu\",\n                \"sylh_month\": \"Sep\",\n                \"sylh_year\": 2024,\n                \"syu_numlogins\": 2\n            },\n            {\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"sylh_date\": \"2024-09-06\",\n                \"sylh_day\": \"Fri\",\n                \"sylh_month\": \"Sep\",\n                \"sylh_year\": 2024,\n                \"syu_numlogins\": 1\n            },\n            {\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"sylh_date\": \"2024-09-07\",\n                \"sylh_day\": \"Sat\",\n                \"sylh_month\": \"Sep\",\n                \"sylh_year\": 2024,\n                \"syu_numlogins\": 1\n            },\n            {\n                \"syu_id\": 1,\n                \"syu_fullname\": \"Steve Curd\",\n                \"sylh_date\": \"2024-09-08\",\n                \"sylh_day\": \"Sun\",\n                \"sylh_month\": \"Sep\",\n                \"sylh_year\": 2024,\n                \"syu_numlogins\": 5\n            },\n            {\n                \"syu_id\": 2,\n                \"syu_fullname\": \"Fred Bloggs\",\n                \"sylh_date\": \"2024-09-08\",\n                \"sylh_day\": \"Sun\",\n                \"sylh_month\": \"Sep\",\n                \"sylh_year\": 2024,\n                \"syu_numlogins\": 1\n            }\n        ]\n    }\n}"}],"_postman_id":"4dfaa44e-ebf6-4ce9-89a6-65af4c0b7f96"}],"id":"692b82c3-7030-45a2-8461-6b4b6d1d207f","_postman_id":"692b82c3-7030-45a2-8461-6b4b6d1d207f","description":""},{"name":"Vacancies","item":[{"name":"fetchVacancies","event":[{"listen":"prerequest","script":{"id":"7706f7cb-d928-4f55-b0cb-2591e5218044","exec":["pm.variables.set(\"method\",\"fetchVacancies\");\r","pm.variables.set(\"id\", \"\");\r","pm.variables.set(\"tenant\", \"1\");\r","pm.variables.set(\"email\", \"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"dcb32aab-dbd0-4a99-8532-d98bff6b277c","exec":[""],"type":"text/javascript","packages":{}}}],"id":"eaaf8c91-b66a-41ad-8ad9-e2039fa207e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"rcv_id\"      : 7,\r\n     \"datalevel\"   : \"verbose\",\r\n     \"offset\"      : 0,\r\n     \"maxrows\"     : 1000,\r\n     \"includeArchived\" : \"yes\"\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[],"_postman_id":"eaaf8c91-b66a-41ad-8ad9-e2039fa207e5"},{"name":"fetchUpdatedVacancies","event":[{"listen":"prerequest","script":{"id":"5247cfca-2395-4b39-985a-d5322e8402e7","exec":["pm.variables.set(\"method\", \"fetchUpdatedVacancies\");\r","pm.variables.set(\"id\",\"\");\r","pm.variables.set(\"tenant\",\"1\");\r","pm.variables.set(\"email\",\"steve.curd@coins-global.com\");\r","var id = pm.variables.get(\"id\");\r","var tenant = pm.variables.get(\"tenant\");\r","var email = pm.variables.get(\"email\");\r","var method = pm.variables.get(\"method\");\r","var secret_key = pm.variables.get(\"secret_key\");\r","var hash = CryptoJS.SHA512(id + tenant + email + method + secret_key);\r","hash = hash.toString(CryptoJS.enc.Hex);\r","pm.variables.set(\"password\", hash);"],"type":"text/javascript","packages":{}}}],"id":"115ece8a-7f5c-4e94-9f0b-5069693d1c03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"datalevel\"   : \"verbose\",     \r\n     \"updatesSince\" : \"2025-01-01\"\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php","urlObject":{"host":["http://localhost/cp_public_html/sitepad/service.php"],"query":[],"variable":[]}},"response":[{"id":"9f76fa46-e174-4231-8a41-d909dc24a5d6","name":"fetchUpdatedClients","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"sitepad\":\r\n  {\"header\":\r\n    {\"id\"          : \"{{id}}\",\r\n     \"tenant\"      : \"{{tenant}}\",\r\n     \"email\"       : \"{{email}}\",\r\n     \"password\"    : \"{{password}}\",\r\n     \"method\"      : \"{{method}}\",\r\n     \"updatesSince\" : \"2024-06-28\"\r\n    }\r\n  }\r\n}"},"url":"http://localhost/cp_public_html/sitepad/service.php"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2024 12:29:32 GMT"},{"key":"Server","value":"Apache/2.4.54 (Win64) OpenSSL/1.1.1p PHP/7.4.30"},{"key":"X-Powered-By","value":"PHP/7.4.30"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sitepad\": {\n        \"header\": {\n            \"id\": \"\",\n            \"method\": \"fetchUpdatedClients\",\n            \"response\": \"SUCCESS\"\n        },\n        \"body\": [\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13607,\n                \"pjc_name\": \"00Aaa\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-06-28 10:50:43\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-06-28 10:50:43\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82783,\n                        \"sytt_desc_region\": \"McG - Civil Engineering\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13612,\n                \"pjc_name\": \"Dddddd Ddddd\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-07-01 13:06:42\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-07-01 13:06:42\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82782,\n                        \"sytt_desc_region\": \"McG - Apprentice Zone\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 905,\n                \"pjc_name\": \"3 G SETS Limited\",\n                \"pjc_accno\": \"SET003\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": 5005,\n                \"pjc_created\": \"2020-06-01 13:47:20\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-07-01 13:17:21\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 296,\n                \"pjc_name\": \"777 Group.\",\n                \"pjc_accno\": \"SEV002\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"020 8689 6861\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"www.777group.com/\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2016-09-26 14:37:25\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-07-01 13:17:47\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1158,\n                \"pjc_name\": \"Z'zz Groundwork\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2021-02-21 13:43:59\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 17:25:40\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13601,\n                \"pjc_name\": \"Client 106\",\n                \"pjc_accno\": \"AAA106\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-06-23 14:55:15\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-06-23 14:55:15\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 999,\n                \"pjc_name\": \"ZYBER CONSTRUCTION LTD\",\n                \"pjc_accno\": \"ZYB001\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2020-06-01 13:47:20\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-05-02 15:00:38\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13626,\n                \"pjc_name\": \"Client 109\",\n                \"pjc_accno\": \"AAA109\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-05 10:20:14\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-05 10:20:14\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13635,\n                \"pjc_name\": \"Client 111\",\n                \"pjc_accno\": \"AAA111\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-05 12:47:53\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-05 12:47:53\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Fourth\"\n                    }\n                ],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13636,\n                \"pjc_name\": \"Client 112\",\n                \"pjc_accno\": \"AAA112\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-05 12:49:04\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-05 12:49:04\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Fourth\"\n                    }\n                ],\n                \"categories\": [],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 11085,\n                \"pjc_name\": \"1OFF BASEMENTS LIMITED CA006\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2023-09-11 16:33:50\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-06-08 18:28:32\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 812,\n                        \"sytt_desc_region\": \"London & the South East\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1218,\n                \"pjc_name\": \"01 Syrinx Client 01 ccccccccccccccccccc\",\n                \"pjc_accno\": \"001C\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"01895821513\",\n                \"pjc_compregno\": \"1514001\",\n                \"pjc_website\": \"01cxxx.co.uk\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": 123413,\n                \"pjc_created\": \"2023-02-17 11:50:20\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-08 14:53:43\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 730,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Construction\",\n                        \"sytt_desc_full\": \"Primary - Construction\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 732,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Primary - Developer\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 666,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Logistics\",\n                        \"sytt_desc_full\": \"Secondary - Logistics\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 670,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Fit Out\",\n                        \"sytt_desc_full\": \"Secondary - Fit Out\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 673,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Secondary - Developer\"\n                    }\n                ],\n                \"categories\": [\n                    {\n                        \"sytt_id_category\": 803,\n                        \"sytt_desc_category\": \"Active\"\n                    },\n                    {\n                        \"sytt_id_category\": 759,\n                        \"sytt_desc_category\": \"Not Active\"\n                    },\n                    {\n                        \"sytt_id_category\": 756,\n                        \"sytt_desc_category\": \"Top 20\"\n                    },\n                    {\n                        \"sytt_id_category\": 757,\n                        \"sytt_desc_category\": \"Top 40\"\n                    }\n                ],\n                \"regions\": []\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1160,\n                \"pjc_name\": \"2Roofers Ltd\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"01895 8334455\",\n                \"pjc_compregno\": \"1234567\",\n                \"pjc_website\": \"www.bbc.co.uk\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": 5004,\n                \"pjc_created\": \"2021-02-21 20:11:06\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-09 20:12:25\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82783,\n                        \"sytt_desc_region\": \"McG - Civil Engineering\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13637,\n                \"pjc_name\": \"Client 110\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-10 10:34:27\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-10 10:34:27\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82784,\n                        \"sytt_desc_region\": \"McG - Rail Systems\"\n                    },\n                    {\n                        \"sytt_id_region\": 82785,\n                        \"sytt_desc_region\": \"McG - Archive Sector\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1220,\n                \"pjc_name\": \"01 iiiiiixxx bbbbbbbbbbbbbbbbbbbbb\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"bbc.co.uk\",\n                \"pjc_restricted\": \"on\",\n                \"rdb_id\": 123412,\n                \"pjc_created\": \"2023-02-17 12:36:22\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-11 12:33:55\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82782,\n                        \"sytt_desc_region\": \"McG - Apprentice Zone\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 13507\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 13640\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13600,\n                \"pjc_name\": \"Client 105\",\n                \"pjc_accno\": \"AAA105\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": \"www.abc.co.uk\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-06-21 15:52:28\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-12 11:10:24\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 653,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Tertiary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Tertiary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Fourth\"\n                    }\n                ],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 812,\n                        \"sytt_desc_region\": \"London & the South East\"\n                    },\n                    {\n                        \"sytt_id_region\": 813,\n                        \"sytt_desc_region\": \"The North East\"\n                    },\n                    {\n                        \"sytt_id_region\": 814,\n                        \"sytt_desc_region\": \"The North West\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13641,\n                \"pjc_name\": \"Client 113\",\n                \"pjc_accno\": \"AAA113\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-12 11:12:32\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-12 11:12:32\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Primary\"\n                    },\n                    {\n                        \"sytt_id_segment\": 654,\n                        \"sytt_id_segment_option\": null,\n                        \"sytt_desc_segment\": \"Fourth\",\n                        \"sytt_desc_segment_option\": null,\n                        \"sytt_desc_full\": \"Fourth\"\n                    }\n                ],\n                \"categories\": [],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 812,\n                        \"sytt_desc_region\": \"London & the South East\"\n                    },\n                    {\n                        \"sytt_id_region\": 813,\n                        \"sytt_desc_region\": \"The North East\"\n                    },\n                    {\n                        \"sytt_id_region\": 814,\n                        \"sytt_desc_region\": \"The North West\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 1306,\n                \"pjc_name\": \"0000011122Xyz1aaB\",\n                \"pjc_accno\": \"AAVCC\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"01895 111111\",\n                \"pjc_compregno\": \"12345BVV\",\n                \"pjc_website\": \"bbc.co.uk\",\n                \"pjc_restricted\": \"on\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2023-08-20 11:00:24\",\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": \"2024-08-12 16:22:08\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 734,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Business & Industry\",\n                        \"sytt_desc_full\": \"Primary - Business & Industry\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 664,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Plant\",\n                        \"sytt_desc_full\": \"Secondary - Plant\"\n                    },\n                    {\n                        \"sytt_id_segment\": 652,\n                        \"sytt_id_segment_option\": 669,\n                        \"sytt_desc_segment\": \"Secondary\",\n                        \"sytt_desc_segment_option\": \"Formwork\",\n                        \"sytt_desc_full\": \"Secondary - Formwork\"\n                    }\n                ],\n                \"categories\": [\n                    {\n                        \"sytt_id_category\": 803,\n                        \"sytt_desc_category\": \"Active\"\n                    },\n                    {\n                        \"sytt_id_category\": 757,\n                        \"sytt_desc_category\": \"Top 40\"\n                    }\n                ],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 812,\n                        \"sytt_desc_region\": \"London & the South East\"\n                    },\n                    {\n                        \"sytt_id_region\": 82782,\n                        \"sytt_desc_region\": \"McG - Apprentice Zone\"\n                    },\n                    {\n                        \"sytt_id_region\": 82785,\n                        \"sytt_desc_region\": \"McG - Archive Sector\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": 13642,\n                \"pjc_name\": \"Client 130\",\n                \"pjc_accno\": \"AAA130\",\n                \"syc_code\": \"GBP\",\n                \"syc_name\": \"British Pound\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": \"\",\n                \"pjc_website\": \"\",\n                \"pjc_restricted\": \"off\",\n                \"rdb_id\": null,\n                \"pjc_created\": \"2024-08-13 08:49:17\",\n                \"pjc_syu_id_createdby\": 1,\n                \"pjc_syu_fullname_createdby\": \"Steve Curd\",\n                \"pjc_updated\": \"2024-08-13 10:01:58\",\n                \"pjc_syu_id_revby\": 1,\n                \"pjc_syu_fullname_revby\": \"Steve Curd\",\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 730,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Construction\",\n                        \"sytt_desc_full\": \"Primary - Construction\"\n                    },\n                    {\n                        \"sytt_id_segment\": 651,\n                        \"sytt_id_segment_option\": 732,\n                        \"sytt_desc_segment\": \"Primary\",\n                        \"sytt_desc_segment_option\": \"Developer\",\n                        \"sytt_desc_full\": \"Primary - Developer\"\n                    }\n                ],\n                \"categories\": [\n                    {\n                        \"sytt_id_category\": 803,\n                        \"sytt_desc_category\": \"Active\"\n                    },\n                    {\n                        \"sytt_id_category\": 756,\n                        \"sytt_desc_category\": \"Top 20\"\n                    }\n                ],\n                \"regions\": [\n                    {\n                        \"sytt_id_region\": 82782,\n                        \"sytt_desc_region\": \"McG - Apprentice Zone\"\n                    },\n                    {\n                        \"sytt_id_region\": 82783,\n                        \"sytt_desc_region\": \"McG - Civil Engineering\"\n                    }\n                ]\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 13581\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 13618\n            },\n            {\n                \"action\": \"D\",\n                \"pjc_id\": 1148\n            },\n            {\n                \"action\": \"U\",\n                \"pjc_id\": null,\n                \"pjc_name\": \"\",\n                \"pjc_accno\": \"\",\n                \"syc_code\": \"\",\n                \"syc_name\": \"\",\n                \"pjc_phone\": \"\",\n                \"pjc_compregno\": null,\n                \"pjc_website\": null,\n                \"pjc_restricted\": null,\n                \"rdb_id\": null,\n                \"pjc_created\": null,\n                \"pjc_syu_id_createdby\": null,\n                \"pjc_syu_fullname_createdby\": null,\n                \"pjc_updated\": null,\n                \"pjc_syu_id_revby\": null,\n                \"pjc_syu_fullname_revby\": null,\n                \"custom_fields\": {\n                    \"ClientDetails_2783_OtherURL\": \"\",\n                    \"ExtraData_72_ClientField1\": \"\",\n                    \"ExtraData_73_ClientField2\": \"\",\n                    \"ExtraData_74_ClientField3\": \"\",\n                    \"ExtraData_2784_AnInteger\": \"\",\n                    \"ExtraData_2788_\": \"\",\n                    \"ExtraData_2785_ADecimal\": \"\",\n                    \"ExtraData_2786_ACurrencyValue\": \"\",\n                    \"ExtraData_2787_ADate\": \"\"\n                },\n                \"segments\": [],\n                \"categories\": [],\n                \"regions\": []\n            }\n        ]\n    }\n}"}],"_postman_id":"115ece8a-7f5c-4e94-9f0b-5069693d1c03"}],"id":"e769420b-2203-46cc-84c0-14887898e807","_postman_id":"e769420b-2203-46cc-84c0-14887898e807","description":""}],"event":[{"listen":"prerequest","script":{"id":"62f8b076-101f-4ab4-bac1-84dbe73c13b0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"26d12776-9bbb-4ef7-ba35-c3a0f5179a92","type":"text/javascript","exec":[""]}}],"variable":[{"key":"url","value":"http://localhost/cp_public_html/sitepad/service.php","type":"string"},{"key":"secret_key","value":"brentford","type":"string"}]}